-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
70 lines (61 loc) · 2.37 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
---
{% assign homepage = site.data.homepage.homepage.homepage %}
{% include posthack-hero.html %}
<section class="sponsors" id="sponsors">
<div class="container">
<h1 class="text-center">{{ homepage.sponsors.header }}</h1>
<h2 class="sub-text text-center">{{ homepage.sponsors.sub-header }}</h2>
<div class="sponsors-logo-container grid">
<div class="grid-sizer"></div>
{% for sp in homepage.sponsors.sponsor %}
<div class="sponsors-logo grid-item {{ sp.grid_size }} {{ sp.extra_class }}">
<a href="{{ sp.url }}">
<img src="{{ sp.image }}" alt="{{ sp.name }}">
</a>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="hackathon-winners">
<div class="container">
<h1 class="text-center"> We would like to present our winners this 2019!</h1>
<div class="hackathon-winners-container">
{% for winner in homepage.posthack.winners %}
<div class="hackathon-image-wrapper grid-33 tablet-grid-50 mobile-grid-100">
<a href="#" class="hackathon-image-url" data-featherlight="{{ winner.image }}">
<img src="{{ winner.image }}" alt="{{ winner.alt }}" class="img-thumbnail hackathon-image">
</a>
<div class="hackathon-winners-text">
<h3 class="text-center"> {{ winner.title }} </h3>
<p class="text-center"> Team: {{ winner.team }} </p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="hackathon-images">
<div class="container">
<h1 class="text-center"> Plattshacks 2019 </h1>
<div class="hackathon-image-grid">
{% for image in homepage.posthack.hackathon_images %}
<div class="hackathon-image-wrapper grid-25 tablet-grid-33 mobile-grid-50">
<a href="#" class="hackathon-image-url" data-featherlight="{{ image.src }}">
<img src="{{ image.src }}" alt="{{ image.alt }}" class="img-thumbnail hackathon-image">
</a>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="hackathon-credits">
<div class="container">
<h1 class="text-center">Special thanks to people who helped organize PlattsHacks 2019</h1>
{% for organizer in homepage.posthack.organizers %}
{{ organizer.name | markdownify }}
{% endfor %}
</div>
</section>