-
Notifications
You must be signed in to change notification settings - Fork 4
/
schedule1.html
96 lines (96 loc) · 3.43 KB
/
schedule1.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
---
layout: page
title: "6월 28일 목요일: 1일차 (Day 1)"
icon: <i class="far fa-comments"></i><i class="far fa-calendar-check"></i>
permalink: /schedule1/
---
<div class="alert alert-info" role="alert">
발표 제목을 클릭하여 연사 및 발표 개요를 확인하실 수 있습니다. 지속적으로 업데이트가 이루어지니 참고하시기 바랍니다. <br>
※ 행사 당일 프로그램은 사정에 따라 변경될 수 있습니다. <br>
※ 발표 자료 및 영상은 연사분 동의가 이루어진 경우에만 공유됩니다.
</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.session1s | 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.session1s | 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>
{% 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>
<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>