-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteaching.html
More file actions
64 lines (58 loc) · 1.18 KB
/
teaching.html
File metadata and controls
64 lines (58 loc) · 1.18 KB
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
---
layout: default
title: Teaching
---
<section>
<h2>Lectures</h2>
<p>
Here you can find an overview over all the lectures we offer.
</p>
{% assign current_lectures = site.lectures | where:"state","current" %}
{% assign planned_lectures = site.lectures | where:"state","planned" %}
{% assign old_lectures = site.lectures | where:"state","old" %}
<h3>Current lectures</h3>
<ul>
{% for lecture in current_lectures %}
<li>
<a href="{{ lecture.url | relative_url }}">
{{ lecture.name }}
</a>
({{ lecture.when }})
</li>
{% else %}
<li><em>none</em></li>
{% endfor %}
</ul>
<h3>Planned lectures</h3>
<p>
These lectures are not offered this semester but will be in the future:
</p>
<ul>
{% for lecture in planned_lectures %}
<li>
<a href="{{ lecture.url | relative_url }}">
{{ lecture.name }}
</a>
({{ lecture.when }})
</li>
{% else %}
<li><em>none</em></li>
{% endfor %}
</ul>
<h3>Old lectures</h3>
<p>
These lectures are not offered anymore but have been in the past:
</p>
<ul>
{% for lecture in old_lectures %}
<li>
<a href="{{ lecture.url | relative_url }}">
{{ lecture.name }}
</a>
({{ lecture.when }})
</li>
{% else %}
<li><em>none</em></li>
{% endfor %}
</ul>
</section>