This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
182 lines (161 loc) · 6.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
---
layout: 'compress'
---
<!DOCTYPE html lang="en">
<!--<pre>
{% include assets_ascii.txt %}
</pre>-->
<!-- the PRE tags are needed to prevent the minifier from removing the newlines in our artwork -->
<html>
<head lang="en">
<title>{{ site.title }}</title>
{% include assets_meta.html %}
{% include assets_resources.html %}
</head>
<body>
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/seasons/eu-2018/events?utm_source=eu-2018&utm_medium=TrustBadge&utm_campaign=eu-2018&utm_content=blue" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2018/blue.svg" alt="Major League Hacking 2017 Hackathon Season" style="width:100%"></a>
<!-- Header and Table of Contents -->
<a name="splash"></a>
<section id="splash">
<div class="splash-container">
<div class="splash-banner">
<div>
<img src="assets/images/jacobshack-2017.jpg"/>
</div>
<!--<h2 class="subtitle">November 18<sup>th</sup> - 19<sup>th</sup>, 2017<br><a id="goto-footer">Bremen, Germany</a></h2>
--></div>
</div>
<div id="navbar" class="ui">
<div class="ui three item menu borderless" style="border-radius:0">
<a id="goto-about" class="item">About</a>
<a id="goto-faq" class="item">FAQ</a>
<a id="goto-reg-now" class="item">Register</a>
<a id="goto-team" class="item">Team</a>
</div>
</div>
</section>
<!-- About JacobsHack! -->
<a name="about"></a>
<section id="about" class="droid ui page grid center aligned padded stackable">
<div class="source-bold title six wide column">
<h2>jacobsHack?</h2>
</div>
<div class="ten wide column">
<p class="droid">
jacobsHack! is Germany's largest student-run hackathon where student
hackers from all over the world come together to create and collaborate
on disruptive projects over the course of 24 hours filled with
programming, tech talks, games, and nerf gun battles.
</p>
</div>
</section>
<!-- FAQ -->
<a name="faq"></a>
<section id="faq" class="source ui page grid left aligned padded stackable">
<div class="source-bold title twelve wide column">
<h2 class="mobile">FAQ</h2>
<h2 class="computer only">Frequently Asked Questions</h2>
</div>
<div class="row">
{% for entry in site.data.faq %}
<div class="five wide column">
<h4 class="question">
{{ entry.question }}<i class="angle down icon"></i>
</h4>
<p class="answer">
{{ entry.answer }}
</p>
</div>
{% endfor %}
</div>
</section>
<!-- Registration -->
<a name="reg-now"></a>
<section id="reg-now" class="droid ui page grid center aligned padded stackable">
<div class="reg-now-form-cont source-bold title ten wide column">
<h2>Register for jacobsHack!</h2>
<br>
<!-- <form action="https://jacobshack.us8.list-manage.com/subscribe/post-json?u=98f396a0be77e1f91596a7696&id=55558cc4a0&c=?" method="GET" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank" novalidate="novalidate" role="form" class="ui form">
<div class="field">
<label for="mce-EMAIL" class="hidden" style="color:#ffffff">Email</label>
<input id="mce-EMAIL" name="EMAIL" placeholder="[email protected]" type="email" class="form-control" />
<div id="reg-email-label" style="display: none;" class="ui pointing red basic label">
Something went wrong! Please try again.
</div>
</div>
<input class="hidden" type="text" name="b_98f396a0be77e1f91596a7696_55558cc4a0" tabindex="-1" value="" />
<button id="reg-button" type="submit" class="ui button">Subscribe for Updates</button>
</form> -->
<a id="reg-button" class="source-bold ui button" href="https://jacobshack.typeform.com/to/MWCQ1n" disabled>Register now!</a>
<!--<p>Registrations opens soon</p>-->
</div>
</section>
<!-- Sponsors -->
<section id="sponsor" class="droid ui page grid center aligned padded stackable">
<div class="reg-now-form-cont source-bold title ten wide column">
<h2>Sponsors and Partners</h2>
</div>
<div id="image_grid">
{% for sponsor in site.data.sponsors %}
<a href="{{ sponsor.link }}" target="_blank">
<img src="{{ sponsor.image }}" style="width:{{ sponsor.width }}px">
</a>
{% endfor %}
</div>
</section>
<!-- Schedule
<section id="schedule" class="droid ui page grid center aligned padded stackable" style="background-color: #00417F">
<div class="reg-now-form-cont source-bold title ten wide column">
<h2>Schedule</h2>
<br>
<table class="ui celled padded table" style="color: white; text-align: center;">
<tbody>
{% for day in site.data.schedule %}
<tr>
<td colspan="2">{{ day.day }}</td>
</tr>
{% for activity in day.activities %}
<tr>
<td>{{ activity.time }}</td>
<td class="single line">{{ activity.event }}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</div>
</section>
-->
<!-- the family -->
<a name="team"></a>
<section id="team" class="droid ui page grid center aligned padded">
<div class="source-bold title twelve wide column">
<h2 class="computer only" style="color:#07457B">Meet the jacobsHack! family</h2>
</div>
<div id="image_grid">
{% for member in site.data.family %}
<a href="mailto:{{ member.email }}">
<div class="image_container">
<img src="{{ member.image }}">
<div>
<span>{{ member.name }}<br>{{ member.job }}</span>
</div>
</div>
</a>
{% endfor %}
</div>
</section>
<section id="footer">
<!-- we want to show the footer -->
<div class="jacobshack-map"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCOeZZgvr-83WbdhKvBdtBzAzS1zpNUWp0&callback=mapInit" async defer></script>
<!-- Credits and Source Code -->
<div id="color-bars">
<div id="color-bar2"> </div>
<div id="color-bar2" style="display:flex; justify-content:center; align-items:center; color:white"><a href="https://github.com/jacobs-hack/static-page" target="_blank" style="color:white">Source</a>. Based on <a href="https://github.com/techx/hackmit-splash" target="_blank" style="color:white">HackMIT splash page</a></div>
<div id="color-bar2"> </div>
</div>
</section>
{% include assets_ga.html %}
</body>
</html>