{% assign course = site.teachings | where: 'course_id', include.course_id | first %} {% if course %}

{{ course.title }}

{% if course.description %}
{{ course.description | markdownify }}
{% endif %} {% if course.instructor %}

Instructor: {{ course.instructor }}

{% endif %} {% if course.term %}

Term: {{ course.term }}

{% endif %} {% if course.schedule %} {% for entry in course.schedule %} {% endfor %}
Week Date Topic Materials
{{ entry.week }} {{ entry.date }} {% if entry.topic %} {{ entry.topic }} {% endif %} {% if entry.description %}
{{ entry.description | markdownify }}
{% endif %}
{% if entry.materials %}
    {% for material in entry.materials %}
  • {% if material.url %} {% if material.url contains '://' %} {{ material.name }} {% else %} {{ material.name }} {% endif %} {% else %} {{ material.name }} {% endif %}
  • {% endfor %}
{% endif %}
{% else %}

No schedule available for this course.

{% endif %}
{% endif %}