forked from MLH/mlh-hackathon-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
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="sponsorship" style="background-color: white;">
<div class="container">
<h1 class="text-center" style="color:black;">Sponsors</h1>
<div class="items row">
{% for section in site.event.sponsorship.gold %}
<div class="col-xs-12 col-sm-6 text-center width-600">
<div class="item">
<img src="{{ section.image }}" />
</div>
</div>
{% endfor %}
</div>
<div class="items row">
{% for section in site.event.sponsorship.silver %}
<div class="col-xs-12 col-sm-4 text-center">
<div class="item">
<img src="{{ section.image }}" />
</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>