-
Notifications
You must be signed in to change notification settings - Fork 11
/
timetable_sunday.html
54 lines (53 loc) · 2.02 KB
/
timetable_sunday.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
<div class='schedule'>
<section>
<h1 class="title">Sunday, 10th November</h1>
<table cellspacing='0'>
<tr class="breaks">
<td class="time">09<span>00</span></td>
<td class="centered">Auditorium opens</td>
</tr>
<tr class="breaks">
<td class="time">09<span>30</span></td>
<td class="centered">Welcome speech</td>
</tr>
{% assign talks_data_day = site.sessions | where: "day", "sunday" | where: "public", "true" | sort: "start" %}
{% assign talks_data_both = site.sessions | where: "day", "both" | where: "public", "true" | sort: "start" %}
{% assign talks_data = talks_data_day | concat: talks_data_both %}
{% for talk in talks_data %}
{% if talk.type == 'break' %}
<tr class="breaks">
<td class="time">{{talk.start | split: ":" | join: "<span>" }}</span></td>
<td class="centered">{{ talk.title }}</td>
</tr>
{% elsif talk.special == null or talk.special == 'Keynote' %}
<tr>
<td class="time"><a href="/sessions/{{talk.slug}}">
{{talk.start | split: ":" | join: "<span>" }}</span>
</a></td>
<td><a href="/sessions/{{talk.slug}}">
<div class='talk_info'>
{% if talk.special %}<span class="badge">Keynote</span>{% endif %}
{% if talk.type == 'workshop' %}<i>Workshop:</i>{% endif %}
{{talk.title}}<br>
{% if talk.room %}Room: <b>{{talk.room}}</b>{% endif %}
</div>
<div class='speakers'>
{% for person in talk.speakers %}
<div class='speaker'>
{% assign speaker = site.data.speakers[person] %}
<img src="/assets/speakers/{{speaker.thumbnailUrl}}" />
{{speaker.name}}
</div>
{% endfor %}
</div>
</a></td>
</tr>
{% endif %}
{% endfor %}
<tr class="breaks">
<td class="time">18<span>30</span></td>
<td class="centered">Closing Venue</td>
</tr>
</table>
</section>
</div>