Skip to content

Latest commit

 

History

History
99 lines (63 loc) · 2.64 KB

File metadata and controls

99 lines (63 loc) · 2.64 KB
layout title active_tab
default
Modules
recordings
Below, you'll find links to pre-recorded lectures. You can also find recordings of the live lectures from this semester on Panoto. You don't have to watch both sets of recordings - you can pick either the pre-recorded lectures or the live lectures.

{% capture now %}{{'now' | date: '%s'}}{% endcapture %} {% assign now = now | plus: 0 %}

{% for module in site.data.modules %}

{% capture module_start_date %}{{module.start_date | date: '%s'}}{% endcapture %} {% capture module_end_date %}{{module.end_date | date: '%s'}}{% endcapture %} {% assign module_start_date = module_start_date | plus: 0 %} {% assign module_end_date = module_end_date | plus: 0 %}

{% if module_start_date <= now and module_end_date >= now %} {% endif %}

Module {{ forloop.index }}: {{module.title}}

{{module.description}}

{% if module.intro_video %} * Intro: Module {{ forloop.index }} [Video] {% endif %} {% for lesson in module.lessons %}

  • Lesson {{ forloop.index }}: {{lesson.title}} {%if lesson.video %}[Video]{% endif %} {% endfor %}

{% if module.slides %} Slides: [Slides] {% endif %}

{% if module.readings %} Readings: {% for reading in module.readings %} {% if reading.url %}

  • {% if reading.optional %}Optional: {% endif %} {{ reading.authors }}, {{ reading.title }} {% else %}
  • {% if reading.optional %}Optional {% endif %} {{ reading.authors }}, {{ reading.title }} {% endif %} {% endfor %} {% endif %}

{% if module.homework %} Homework:

    {% for page in site.pages %} {% capture due_year %}{{page.due_date | date: '%Y'}}{% endcapture %}

    {% if page.title contains module.homework %}

  • {{ page.title }} {% if this_year == due_year %} (due {{ page.due_date | date: "%A, %B %-d, %Y" }}) {% endif %}
  • {% endif %} {% endfor %}
{% endif %}

{% if module.quiz %} Quiz:

    {% for quiz in module.quiz %}

    {% capture due_year %}{{quiz.due_date | date: '%Y'}}{% endcapture %}

  • {{ quiz.title }} {% if this_year == due_year %} (due {{ quiz.due_date | date: "%A, %B %-d, %Y" }}) {% endif %}
  • {% endfor %}
{% endif %}

{% endfor %}