-
Notifications
You must be signed in to change notification settings - Fork 220
/
index.html
46 lines (42 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: default
---
{% include hero.html %}
<section class="about">
<div class="container">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 text-center">
{{ site.event.about.description | markdownify }}
</div>
</div>
</section>
<section class="info">
<div class="container">
<div class="items row">
{% for section in site.event.info.sections %}
<div class="col-xs-12 col-sm-4 text-center">
<div class="item">
<img src="{{ section.image }}" />
<h1>{{ section.title }}</h1>
<p>{{ section.description }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="faq">
<div class="container">
<h1 class="text-center">FAQ</h1>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2">
{% for item in site.event.faq %}
<div class="question col-xs-12 col-sm-12">
<h2>{{ item.question }}</h2>
<hr>
{{ item.answer | markdownify }}
</div>
{% endfor %}
</div>
</div>
</div>
</section>