-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
84 lines (75 loc) · 1.82 KB
/
schedule.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
---
layout: normal
title: Schedule
color: "#ff5b00"
bg_url: "/assets/images/X.svg"
bg_position: "-20vw 10vh"
---
<header class="content-siteheader">
<h1>{{ page.title }}</h1>
</header>
<p>
While organizing our schedule we chose quality over quantity. We are convinced that a few exciting, hand-picked talks make a great hackathon while not distracting you from actually working on your project. The hackathon will take place on gather.town, so there will be plenty of opportunities for exchange.
</p>
<p><b>All times are in CEST.</b></p>
<div class="framedlists">
<div class="framedlist">
<header class="list-header"><b>Friday</b>, June 25th</header>
<ol>
{% for item in site.data.friday %}
<li>
<b>{{ item.time }}</b>
<br>
<span>{{ item.name }}</span>
</li>
{% endfor %}
</ol>
</div>
<div class="framedlist">
<header class="list-header"><b>Saturday</b>, June 26th</header>
<ol>
{% for item in site.data.saturday %}
<li>
<b>{{ item.time }}</b>
<br>
<span>{{ item.name }}</span>
</li>
{% endfor %}
</ol>
</div>
<div class="framedlist">
<header class="list-header"><b>Sunday</b>, June 27th</header>
<ol>
{% for item in site.data.sunday %}
<li>
<b>{{ item.time }}</b>
<br>
<span>{{ item.name }}</span>
</li>
{% endfor %}
</ol>
</div>
</div>
<h2>Tech Talks</h2>
<div class="framedlists">
<div class="framedlist">
<header class="list-header"><b>Saturday</b>, June 26th</header>
<ol>
{% for item in site.data.talks %}
<li>
<b>{{ item.time }}</b>
<br>
<span>{{ item.speaker }}</span>
<br>
<span><i>{{ item.name }}</i></span>
</li>
{% endfor %}
</ol>
</div>
</div>
<!--
<div class="content-footer">
<p><strong>The Schedule is not yet complete.</p>
<p><strong>Stay tuned for <mark class="accent-tc">more</mark>!</strong></p>
</div>
-->