-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyllabus.html
85 lines (85 loc) · 3.34 KB
/
syllabus.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
---
scripts: syllabus.js
stylesheet: syllabus.css
---
<section class="content-section">
<header>
<h1>Prerequisite</h1>
</header>
<ul>
<li>We would use <strong>Swift 3.0</strong>.</li>
<li>
<a href="https://itunes.apple.com/app/xcode/id497799835?mt=12" target="_blank">Xcode 8.0</a>
<em>(or newer versions)</em>
</li>
<li>
A Mac running
<a href="https://itunes.apple.com/app/macos-sierra/id1127487414?mt=12" target="_blank">macOS Sierra 10.12</a>
or OS X El Capitan 10.11.5
<em>
(or newer updates of each OS versions)<br>
(laptops are recommended. you should bring your Mac to the class.)
</em>
</li>
<li>An iOS device <em>(recommended, not required, at least running iOS 10.)</em></li>
<li>Programming experience with <strong>Object-Oriented Languages</strong>, like Python, Java, or C++.</li>
</ul>
</section>
<section class="content-section">
<header>
<h1>Syllabus</h1>
</header>
<div class="table-responsive">
<table id="syllabus-calendar-table" class="table table-striped">
<thead>
<tr>
<th></th>
<th>Title</th>
<th>Topics</th>
<th>Resources</th>
</tr>
</thead>
<tbody>
{% for class in site.data.classes.syllabus %}
<tr data-date="{{ class.date }}" class="{{ class.row-class }}">
<th>{{ class.date }}</th>
{% if class.title %}
<th>
{{ class.title }}
{% if class.description %}
<br>
<small>{{ class.description }}</small>
{% endif %}
</th>
{% else %}
<td>[TBA]</td>
{% endif %}
<td>
<ul>
{% for topic in class.topics %}
<li>{{ topic }}</li>
{% endfor %}
</ul>
</td>
<td>
{% for resource_group in class.resources %}
<section>
<small>{{ resource_group.title }}</small>
<ul>
{% for resource in resource_group.content %}
<li>
<a href="{{ resource.link }}" target="_blank">
{{ resource.name }}
</a>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>