forked from jacopo-massa/hpdc24-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.html
executable file
·180 lines (177 loc) · 8.25 KB
/
program.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
---
title: Program
layout: page
slide_id: 4
---
<br>
<div class="row mt-xs-0 mt-sm-0 my-2">
<div class="col conference-text text-muted">
{% if site.data.program.online.record %}
<p>
The conference will be streamed live and recorded for each day.
<br>
The event can be accessed online at: <a
href="{{site.data.program.online.url}}">{{site.data.program.online.url}}</a>
</p>
{% endif %}
<p>
{% if site.data.program.online.streams %}
<table class="table">
<tr>
<th>Stream</th>
<th>Link</th>
</tr>
{% for stream in site.data.program.online.streams %}
<tr>
<td>{{stream.title}}</td>
<td><a target="_blank" href="{{stream.url}}">{{stream.url}}</a></td>
</tr>
{% endfor %}
</table>
{% endif %}
</p>
<div class="row">
<div class="col-12">
<div id="days" class="alert alert-success rounded text-center mx-3">
{% for day in site.data.program.schedule %}
<a class="h6 alert-link" href="#day{{forloop.index}}">Day {{ forloop.index }}</a>
{% if forloop.last %} {% else %} | {% endif %}
{% endfor %}
</div>
</div>
</div>
{% if site.data.program.schedule != nil %}
{% for day in site.data.program.schedule %}
<hr>
<div>
<div>
<h4 id="day{{forloop.index}}" class="schedule-table-heading">
<a class="text-secondary" href="#">
<i class="fa-solid fa-arrow-up mr-2" aria-hidden="true"></i>
</a>
Day {{ forloop.index}} - {{ day.dateReadable }} ({{ day.location }})
</h4>
</div>
<table class="table table-bordered table-hover table-sm">
{% if day.type == "wst" %}
<thead>
<tr>
<th class="w-25"></th>
<th class="bg-light text-center h6 align-middle">Aula Gerace</th>
<th class="bg-light text-center h6 align-middle">Riunioni Est</th>
<th class="bg-light text-center h6 align-middle">Riunioni Ovest</th>
<th class="bg-light text-center h6 align-middle">Seminari Est</th>
<th class="bg-light text-center h6 align-middle">Seminari Ovest</th>
<th class="bg-light text-center h6 align-middle">Sala Demo</th>
</tr>
</thead>
<tbody>
{% for timeslot in day.timeslots %}
<tr>
<td class="bg-light text-center h6 align-middle">
<div>{{timeslot.startTime}} - {{timeslot.endTime}}</div>
</td>
{% if timeslot.type == "service" %}
<td colspan=5 class="table-warning text-center align-middle">
<h6 class="text-center mb-1 mt-1">{{timeslot.title}}</h6>
</td>
{% elsif timeslot.type == "social" %}
<td colspan=5 class="table-dark text-center align-middle">
<h6 class="text-light mb-1 mt-1">{{timeslot.title}}</h6>
</td>
{% else %}
<td class="text-center align-middle">{{ timeslot.rooms.gerace }} </td>
<td class="text-center align-middle">{{ timeslot.rooms.riunioni_est }} </td>
<td class="text-center align-middle">{{ timeslot.rooms.riunioni_ovest }} </td>
<td class="text-center align-middle">{{ timeslot.rooms.seminari_est }} </td>
<td class="text-center align-middle">{{ timeslot.rooms.seminari_ovest }} </td>
{% endif %}
{% if forloop.first %}
<td rowspan={{day.timeslots.size}} class="text-center h6 align-middle">
Web, Mails,<br>Calls, Work,<br>Study room
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
{% else %}
{% for timeslot in day.timeslots %}
<thead>
<tr>
<th class="w-25 bg-light text-center h6 align-middle">
<div>{{timeslot.startTime}} - {{timeslot.endTime}}</div>
</th>
{% if timeslot.type == "service" %}
<th colspan="2" class="table-warning text-center align-middle">
<h6 class="text-center mt-1 mb-1">{{timeslot.title}}</h6>
</th>
{% elsif timeslot.type == "keynote" %}
<th colspan="2" class="table-success text-center align-middle">
<h5 class="text-center">Keynote: <i>{{timeslot.title}}</i></h5>
<p>
{% if timeslot.speaker %}
Speaker: <i>{{timeslot.speaker}}</i>
{% endif %}
{% if timeslot.chair %}
<br>Session chair: <i>{{timeslot.chair}}</i>
{% endif %}
</p>
</th>
{% elsif timeslot.type == "social" %}
<th colspan="2" class="table-dark text-center align-middle">
<h6 class="text-light mb-1 mt-1">{{timeslot.title}}</h6>
</th>
{% elsif timeslot.type == "parallel" %}
{% for event in timeslot.events %}
<th class="table-{% cycle 'info', 'success' %} text-center align-middle">
<h6 class="text-center mb-1 mt-1">{{event.name}}</h6>
<i style="font-weight: normal !important">
{{event.location}}
</i>
</th>
{% endfor %}
{% else %}
<th colspan="2" class="table-info text-center align-middle">
<h5 class="text-center mb-1 mt-1">{{timeslot.title}}</h5>
{% if timeslot.chair %}
<p>Session chair: <i>{{timeslot.chair}}</i></p>
{% endif %}
</th>
{% endif %}
</tr>
</thead>
{% if timeslot.submissions %}
<tbody>
{% for submission_id in timeslot.submissions %}
{% assign submission = site.data.submissions.all | where : "id", submission_id | first %}
<tr>
<td width="20%" style="border: none">
</td>
<td colspan="2">
<p><b>(#{{submission.id}}) {{submission.title}}</b></p>
{% if submission.authors %}
<p>
{% for author in submission.authors %}
{% if forloop.first %}
<i><b>Authors:</b></i> {% else %}, {% endif %}
<i>{{author.name}}</a>
{% endfor %}
</p>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
{% endfor %}
{% endif %}
</table>
</div>
{% endfor %}
{% else %}
<div class="alert alert-warning rounded text-center mx-3 my-5">
TBA
</div>
{% endif %}
</div>
</div>