forked from PlattsHacks/PlattsHacks.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (72 loc) · 2.82 KB
/
index.html
File metadata and controls
80 lines (72 loc) · 2.82 KB
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
71
72
73
74
75
76
77
78
79
80
---
layout: default
---
{% assign homepage = site.data.homepage.homepage.homepage %}
{% include hero.html %}
<section class="about">
<div class="container">
<div class="col-xs-12 col-sm-offset-1 text-center">
<h1>
{{ homepage.about.header }}
</h1>
<p>
{{ homepage.about.description | markdownify }}
</p>
</div>
</div>
</section>
<section class="info">
<div class="items row">
<div class="item">
<div class="row">
<div class="col-md-4 col-sm-12 first-col">
<h1>{{ homepage.info.section_1.title }}</h1>
<p>{{ homepage.info.section_1.description }}</p>
</div>
<div class="col-md-4 col-sm-12 second-col">
<h1>{{ homepage.info.section_2.title }}</h1>
<p>{{ homepage.info.section_2.description }}</p>
</div>
<div class="col-md-4 col-sm-12 third-col">
<h1>{{ homepage.info.section_3.title }}</h1>
<p>{{ homepage.info.section_3.description }}</p>
</div>
</div>
</div>
</div>
</section>
<section class="faq">
<div class="container">
<h1 class="text-center">FAQ</h1>
<div>
{% for row in homepage.faq %}
<div class="grid-container">
{% for item in row %}
<div class="question grid-50 grid-tablet-50 grid-mobile-100">
<h2>{{ item.question }}</h2>
<hr>
{{ item.answer | markdownify }}
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</section>
<section class="sponsors" id="sponsors">
<div class="container">
<h1 class="text-center">Sponsors</h1>
<h2 class="sub-text text-center">{{ homepage.sponsors.header }}</h2>
<a target="_blank" href="https://drive.google.com/open?id=1rj-3JaL28ovJQ2tkgrtcqITTuMsLezUe" class="sponsor-button"> Sponsorship packet </a>
</div>
</section>
<section class="location">
<div class="container">
<h1 class="text-center">Location</h1>
<div class="row">
<div class="map-container col-xs-12 col-sm-8 col-sm-offset-2">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2836.239154362774!2d-73.46921128446812!3d44.69431607909945!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cca4758ad72ba25%3A0x72f2820ae0dbf351!2sYokum+Communications%2FLecture+Hall!5e0!3m2!1sen!2sus!4v1525704526634" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
</div>
</section>