forked from gcasr/2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram_timetable.html
62 lines (59 loc) · 1.27 KB
/
program_timetable.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
---
layout: calls
permalink: /timetable
title: Timetable
---
<style>
.header th {
padding: 0.5em 1em;
}
.td-reset {
background-color: transparent !important;
border-left: none !important;
border-radius: 0 !important;
font-weight: normal !important;
}
</style>
{% assign keynote = 0 %}
<table>
<colgroup>
<col width="25%" />
<col width="40%" />
<col width="15%" />
<col width="30%" />
</colgroup>
<thead>
<tr class="header">
<th>Time</th>
<th>Description</th>
<th>Speaker</th>
<th>Affiliation</th>
</tr>
</thead>
{% assign timetable = site.data.timetable %}
<tbody>
{% for t in timetable %}
<tr>
{% if t.isKeynote %}
<td>{{ t.time }}</td>
<td>
{% assign keynote = keynote | plus: 1 %}
<a href="keynotes"><b>Keynote: </b></a>
<br />
{{ t.description }}
</td>
<td>{{ t.speaker }}</td>
<td>{{ t.affiliation }}</td>
{% elsif t.speaker != "" %}
<td>{{ t.time }}</td>
<td>{{ t.description }}</td>
<td>{{ t.speaker }}</td>
<td>{{ t.affiliation }}</td>
{% else %}
<td>{{ t.time }}</td>
<td colspan="3">{{ t.description }}</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>