-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-schedule.html
72 lines (72 loc) · 2.35 KB
/
custom-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
<div class="row"> <!-- first two days -->
<div class="col-md-6"> <!-- left column -->
<h3>Day 1</h3>
<table class="table table-striped">
<tr> <!-- row 1 -->
<td>Before starting</td>
<td><a href="{{ site.pre_survey }}{{ site.github.project_title }}" target="_blank">Pre-workshop survey</a></td>
</tr>
<tr> <!-- row 2 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 3 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
</table>
</div>
<div class="col-md-6"> <!-- right column -->
<h3>Day 2</h3>
<table class="table table-striped">
<tr> <!-- row 1 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 2 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 3 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
</table>
</div>
</div>
<div class="row"> <!-- days 3 and 4 -->
<div class="col-md-6"> <!-- left column -->
<h3>Day 3</h3>
<table class="table table-striped">
<tr> <!-- row 1 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 2 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 3 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
</table>
</div>
<div class="col-md-6"> <!-- right column -->
<h3>Day 4</h3>
<table class="table table-striped">
<tr> <!-- row 1 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 2 -->
<td></td> <!-- time -->
<td></td> <!-- content -->
</tr>
<tr> <!-- row 3 -->
<td>End</td>
<td><a href="{{ site.post_survey }}{{ site.github.project_title }}" target="_blank">Post-workshop survey</a></td>
</tr>
</table>
</div>
</div>