-
Notifications
You must be signed in to change notification settings - Fork 3
/
schedule.html
62 lines (60 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: Schedule
layout: main
---
<p>
This schedule should be considered tentative,
at least until it actually takes place!
Consult the <a href="https://github.com/cs2043-sp16/lecture-demos">lecture
demos repository</a> for in-class exercises, where applicable.
</p>
<div class="table-responsive">
<table class="table table-striped">
<colgroup>
<col class="col-xs-1">
<col class="col-xs-2">
<col class="col-xs-5">
<col class="col-xs-4">
</colgroup>
<thead>
<tr>
<th>Week</th>
<th>Date</th>
<th>Description</th>
<th>Notes</th>
</tr>
</thead>
{% for lec in site.data.lectures %}
<tr{% if lec.break %} class="info"{% endif %}>
{% assign week = lec.week | week: "%d" %}
<th>{% if week %}{{ week }}{% endif %}</th>
<td>{{ lec.date | date: "%a, %b %d" }}</td>
{% if lec.break %}
<td>{{ lec.break }}</td>
{% else %}
<td>{% if lec.info %}{{ lec.info | markdownify }}{% endif %}</td>
{% endif %}
<td>
{% if lec.hw %}
<b>HW</b>:
<ul>
{% for item in lec.hw %}<li>{{ item }}</li>{% endfor %}
</ul>
{% endif %}
{% if lec.demo %}
<b>Demos</b>:
<ul>
{% for item in lec.demo %}<li>{{ item }}</li>{% endfor %}
</ul>
{% endif %}
{% if lec.misc %}
<b>Misc</b>:
<ul>
{% for item in lec.misc %}<li>{{ item }}</li>{% endfor %}
</ul>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div>