This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
generated from carpentries/workshop-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-schedule.html
53 lines (53 loc) · 1.77 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
<div class="row"> <!-- first two days -->
<div class="col-md-4"> <!-- 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-4"> <!-- 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 class="col-md-4"> <!-- right 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>End</td>
<td><a href="{{ site.post_survey }}{{ site.github.project_title }}" target="_blank">Post-workshop survey</a></td>
</tr>
</table>
</div>
</div>