forked from missing-semester/missing-semester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.26 KB
/
index.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
---
layout: page
title: "2020 Lectures"
permalink: /2020/
phony: true
excerpt: '' # work around a bug
---
<ul class="double-spaced">
{% assign lectures = site['2020'] | sort: 'date' %}
{% for lecture in lectures %}
{% if lecture.phony != true %}
<li>
<strong>{{ lecture.date | date: '%-m/%d' }}</strong>:
{% if lecture.ready %}
<a href="{{ lecture.url }}">{{ lecture.title }}</a>
{% elsif lecture.noclass %}
{{ lecture.title }} [no class]
{% else %}
{{ lecture.title }} [coming soon]
{% endif %}
{% if lecture.details %}
<br>
({{ lecture.details }})
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
Video recordings of the lectures are available <a href="https://www.youtube.com/playlist?list=PLyzOVJj3bHQuloKGG59rS43e29ro7I57J">on YouTube</a>.
<h2>Previous year's lectures</h2>
<p>You can find lecture notes and videos from <a href="/2019/">last year's version of this class</a>. Each year's lectures are fully self-contained, and we recommend following the most recent version of the material (i.e. the 2020 lectures). There is slight variation in the topics covered, so we continue to host notes and videos for earlier versions of this course.</p>