-
Notifications
You must be signed in to change notification settings - Fork 3
/
schedules.html
68 lines (68 loc) · 2.4 KB
/
schedules.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
---
layout: page
title: "일정"
icon: <i class="far fa-comments"></i><i class="far fa-calendar-check"></i>
permalink: /schedules/
---
<div class="alert alert-info" role="alert">
(발표 제목을 클릭하여 발표 자료 관련 내용을 확인하실 수 있습니다.)
</div>
<div style="overflow: auto;" align="center">
<div class="program">
<table cellspacing="0" cellpadding="0" border="2">
<colgroup>
<col width="80px ">
<col width="170px">
<col width="170px">
<col width="170px">
<col width="170px">
</colgroup>
<tbody>
<tr>
<th class="section"> </th>
{% assign tracks = site.sessions | group_by: 'track' %}
{% for track in tracks %}
{% unless track.name contains "," %}
<td class="section">{{ track.name }}</td>
{% endunless %}
{% endfor %}
</tr>
{% assign sessions_grouped_unsorted = site.sessions | group_by: 'order' %}
{% assign sessions_grouped = sessions_grouped_unsorted | sort: 'name' %}
{% for session_group in sessions_grouped %}
{% unless session_group.items.size == 0 %}
{% if session_group.items.size == 1 %}
{% assign session = session_group.items[0] %}
<tr>
<th>{{ session.time }}</th>
<td colspan="4">
<a href="{{ site.baseurl }}{{ session.url }}">{{ session.title }}</a>
<span class="fontNameTitle">
{% for speaker in session.speakers %}
<li style="list-style-type: none;">{{ speaker.name }} - {{ speaker.org }}</li>
{% endfor %}
</span>
</td>
</tr>
{% else %}
{% assign sessionSorted = session_group.items | sort: 'track' %}
<tr>
<th>{{ sessionSorted[0].time }}</th>
{% for session in sessionSorted %}
<td>
<a href="{{ site.baseurl }}{{ session.url }}">{{ session.title }}</a>
<span class="fontNameTitle">
{% for speaker in session.speakers %}
<li style="list-style-type: none;">{{ speaker.name }} - {{ speaker.org }}</li>
{% endfor %}
</span>
</td>
{% endfor %}
</tr>
{% endif %}
{% endunless %}
{% endfor %}
</tbody>
</table>
</div>
</div>