-
Notifications
You must be signed in to change notification settings - Fork 4
/
timetable_sunday.html
57 lines (55 loc) · 1.98 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
55
56
57
<div class='schedule'>
<section>
<h1 class="title">Sunday, 25th November</h1>
<span style="margin-left: 3em; font-style: italic">aka "Working hard all day in the shop"</span>
<table cellspacing='0'>
<tr class="breaks">
<td class="time">09<span>15</span></td>
<td class="centered">Auditorium opens</td>
</tr>
<tr class="breaks">
<td class="time">09<span>30</span></td>
<td class="centered">Breakfast</td>
</tr>
{% assign talks_data = site.sessions | where: "day", "sunday" | where: "public", "true" | sort: "start" %}
{% 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}}">
10<span>00</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/rome/speakers/{{speaker.thumbnailUrl}}" />
{{speaker.name}}
</div>
{% endfor %}
</div>
</a></td>
</tr>
{% endif %}
{% endfor %}
<tr class="breaks">
<td class="time">17<span>00</span></td>
<td class="centered">Rooms close</td>
</tr>
</table>
<p>
Note: the Auditorium is available only from 09:30 to 15:00.
</p>
</section>
</div>