-
Notifications
You must be signed in to change notification settings - Fork 0
/
30-schedule.html
152 lines (152 loc) · 4.66 KB
/
30-schedule.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
---
layout: default
title: Schedule
permalink: "schedule"
---
<div class="ui vertical stripe segment">
<div class="ui text container">
<h1>Schedule</h1>
<div class="ui top attached tabular menu">
<a class="item active" data-tab="first">Thursday</a>
<a class="item" data-tab="second">Friday</a>
<a class="item" data-tab="third">Saturday</a>
</div>
<div class="ui bottom attached tab segment active" data-tab="first">
<h2>Day 1 - Hack day</h2>
<table class="ui celled table">
<thead>
<tr>
<th>Start time</th>
<th>Finish time</th>
<th>Event</th>
</tr>
</thead>
<tbody>
<tr>
<td>08:30</td>
<td>09:30</td>
<td>Registration & Breakfast</td>
</tr>
<tr>
<td>09:30</td>
<td>10:00</td>
<td>Hackathon group formation</td>
</tr>
<tr>
<td>10:00</td>
<td>12:30</td>
<td>Hackathon</td>
</tr>
<tr>
<td>12:30</td>
<td>-</td>
<td>Lunch</td>
</tr>
<tr>
<td>12:30</td>
<td>17:00</td>
<td>Hackathon</td>
</tr>
<tr>
<td>18:30</td>
<td>Late</td>
<td>Edinburgh Bar Crawl / Walk up Arthur's seat</td>
</tr>
</tbody>
</table>
</div>
<div class="ui bottom attached tab segment" data-tab="second">
<h2>Day 2 - Stack day</h2>
<table class="ui celled table">
<thead>
<tr>
<th>Start time</th>
<th>Finish time</th>
<th>Event</th>
</tr>
</thead>
<tbody>
<tr>
<td>08:30</td>
<td>09:30</td>
<td>Registration & Breakfast</td>
</tr>
<tr>
<td>09:30</td>
<td>12:30</td>
<td>Feature talks (TBA)</td>
</tr>
<tr>
<td>12:30</td>
<td>13:30</td>
<td>Lunch</td>
</tr>
<tr>
<td>13:30</td>
<td>18:00</td>
<td>Feature talks, stack talks and five in five (TBA)</td>
</tr>
<tr>
<td>18:00</td>
<td>19:00</td>
<td>Dinner</td>
</tr>
<tr>
<td>19:00</td>
<td>20:00</td>
<td><b>Keynote</b>: Mike Kelly</td>
</tr>
<tr>
<td>20:00</td>
<td>23:00</td>
<td>Boardgames night!</td>
</tr>
</tbody>
</table>
</div>
<div class="ui bottom attached tab segment" data-tab="third">
<h2>Day 3 - Conference day</h2>
<table class="ui celled table">
<thead>
<tr>
<th>Start time</th>
<th>Finish time</th>
<th>Event</th>
</tr>
</thead>
<tbody>
<tr>
<td>08:30</td>
<td>09:30</td>
<td>Registration & Breakfast</td>
</tr>
<tr>
<td>09:30</td>
<td>12:30</td>
<td>Five in Five talks</td>
</tr>
<tr>
<td>12:30</td>
<td>13:30</td>
<td>Lunch</td>
</tr>
<tr>
<td>13:30</td>
<td>15:30</td>
<td>Feature talks</td>
</tr>
<tr>
<td>15:30</td>
<td>16:45</td>
<td>Closing</td>
</tr>
<tr>
<td>18:00</td>
<td>Late</td>
<td>After Party! (location TBA)</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>