-
Notifications
You must be signed in to change notification settings - Fork 4
/
schedule2.html
192 lines (189 loc) · 6.68 KB
/
schedule2.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
181
182
183
184
185
186
187
188
189
190
191
192
---
layout: page
title: "6월 29일 금요일: 2일차 (Day 2)"
icon: <i class="far fa-comments"></i><i class="far fa-calendar-check"></i>
permalink: /schedule2/
---
<div class="alert alert-info" role="alert">
발표 제목을 클릭하여 연사 및 발표 개요를 확인하실 수 있습니다. 지속적으로 업데이트가 이루어지니 참고하시기 바랍니다. <br>
※ 행사 당일 프로그램은 사정에 따라 변경될 수 있습니다. <br>
※ 발표 자료 및 영상은 연사분 동의가 이루어진 경우에만 공유됩니다.
</div>
<div align="center">
<a href="#sessions">Kubernetes Workshop & 발표 세션</a> | <a href="#workshops">핸즈온랩 Workshop & Deep Dive Sessions</a>
</div>
<p> </p>
<a name="sessions"></a>
<div style="overflow: auto;" align="center">
<div class="program">
<h4>Kubernetes Workshop & Sessions</h4>
<table cellspacing="0" cellpadding="0" border="2">
<colgroup>
<col width="80px ">
<col width="340px">
<col width="340px">
</colgroup>
<tbody>
<tr>
<th class="section"> </th>
{% assign tracks = site.session2s | 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.session2s | 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="{{ session.track.size }}">
<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>
{% for material in session.materials %}
<a href="{{ material }}">발표자료</a>
{% if session.materials.size != forloop.index %}
|
{% endif %}
{% endfor %}
<br>
{% for video in session.videos %}
<a href="{{ video }}">영상</a>
{% if session.videos.size != forloop.index %}
|
{% endif %}
{% endfor %}
</td>
</tr>
{% else %}
{% assign sessionSorted = session_group.items | sort: 'track' %}
<tr>
<th>{{ sessionSorted[0].time }}</th>
{% for session in sessionSorted %}
<td rowspan="{{ session.rowspan }}">
<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>
{% for material in session.materials %}
<a href="{{ material }}">발표자료</a>
{% if session.materials.size != forloop.index %}
|
{% endif %}
{% endfor %}
<br>
{% for video in session.videos %}
<a href="{{ video }}">영상</a>
{% if session.videos.size != forloop.index %}
|
{% endif %}
{% endfor %}
</td>
{% endfor %}
</tr>
{% endif %}
{% endunless %}
{% endfor %}
</tbody>
</table>
</div>
</div>
<a name="workshops"></a>
<div style="overflow: auto;" align="center">
<div class="program">
<h4>Workshop / Deep Dive Sessions</h4></a>
<table cellspacing="0" cellpadding="0" border="2">
<colgroup>
<col width="80px ">
<col width="150px">
<col width="150px">
<col width="150px">
<col width="150px">
<col width="100px">
</colgroup>
<tbody>
<tr>
<th class="section"> </th>
{% assign tracks = site.workshop2s | 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.workshop2s | group_by: 'order' %}
{% assign sessions_grouped = sessions_grouped_unsorted | sort: 'name' %}
{% assign sessions_grouped_size = sessions_grouped.items.size %}
{% 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="{{ session.track.size }}">
<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>
{% for material in session.materials %}
<a href="{{ material }}">발표자료</a>
{% if session.materials.size != forloop.index %}
|
{% endif %}
{% endfor %}
<br>
{% for video in session.videos %}
<a href="{{ video }}">영상</a>
{% if session.videos.size != forloop.index %}
|
{% endif %}
{% endfor %}
</td>
</tr>
{% else %}
{% assign sessionSorted = session_group.items | sort: 'track' %}
<tr>
<th>{{ sessionSorted[0].time }}</th>
{% for session in sessionSorted %}
<td rowspan="{{ session.rowspan }}">
<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 %}
{% for material in session.materials %}
<a href="{{ material }}">발표자료</a>
{% if session.materials.size != forloop.index %}
|
{% endif %}
{% endfor %}
<br>
{% for video in session.videos %}
<a href="{{ video }}">영상</a>
{% if session.videos.size != forloop.index %}
|
{% endif %}
{% endfor %}
</span>
</td>
{% endfor %}
</tr>
{% endif %}
{% endunless %}
{% endfor %}
</tbody>
</table>
</div>
</div>