-
Notifications
You must be signed in to change notification settings - Fork 3
/
schedule.html
38 lines (35 loc) · 1.14 KB
/
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
---
layout: default
title: Daily Schedule
regenerate: true
header: header-2
header-color: secondary
---
<section id="overview" class="container">
{% include section-header.html title="Tentative Schedule" color="success" %}
<p>Workshops build on each other such that successive workshops use skills developed in earlier ones. All participants will attend workshops on core skills on Tuesday, Wednesday, and Thursday morning. On Wednesday afternoon and Thursday, participants will choose which skills they wish to develop further.</p>
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead class="thead-inverse">
<th style="width:20%">Session</th>
<th style="width:20%">Monday</th>
<th style="width:20%">Tuesday</th>
<th style="width:20%">Wednesday</th>
<th style="width:20%">Thursday</th>
</head>
<tbody>
{% for item in site.data.overview %}
<tr>
<td>{{ item.time }}</td>
<td>{{ item..M }}</td>
<td>{{ item..Tu }}</td>
<td>{{ item..W }}</td>
<td>{{ item..Th }}</td>
</tr>
{% endfor %}
</tbody>
</div>
</table>
</div>
</div>
</section>