This repository was archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschedule.html
More file actions
48 lines (48 loc) · 1.38 KB
/
schedule.html
File metadata and controls
48 lines (48 loc) · 1.38 KB
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
---
layout: page
title: Schedule
menuTitle: Schedule
permalink: /schedule/
redirect_from: /talks/
order: 6
---
<section class="section-schedule">
<div class="section-container section-container--full">
<h2 class="section__title">Schedule</h2>
{% for day in site.data.schedule %}
<div class="schedule-day">
<h3 class="schedule-date">
{{ day.date }} {{ day.day }}
</h3>
<table>
{% for event in day.events %}
<tr>
<td class="schedule-time">
{{ event.time }}
</td>
<td class="schedule-title">
<div>
{{ event.title }}
{% if event.slides %}
[ <a href="{{ event.slides }}">slides</a> ]
{% endif %}
</div>
{% if event.speaker_id %}
<div>
<a href="/speakers/#{{ event.speaker_id }}">
{% for speaker in site.data.speakers %}
{% if speaker.id == event.speaker_id %}
{{ speaker.name }}
{% endif %}
{% endfor %}
</a>
</div>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div>
{% endfor %}
</div>
</section>