Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 926 Bytes

index.md

File metadata and controls

33 lines (23 loc) · 926 Bytes


{% include instructor.md %}

{% include intro.md %}

{% include highlights.md %}

{%- assign featured_lectures = site.data.lectures | where: 'featured', true %} {%- if featured_lectures.size > 0 %}

Recent/Upcoming Lectures

{%- for lecture in featured_lectures %} {% include card.md item=lecture type="lecture" %} {%- endfor %}

All Lectures

{%- endif %}

{%- assign active_assignments = site.data.assignments | where_exp:"item", "item.dormant != true" %} {%- assign featured_assignments = active_assignments | where: 'featured', true %} {%- if featured_assignments.size > 0 %}

Due Assignments

{%- for assignment in featured_assignments %} {% include card.md item=assignment type="assignment" %} {%- endfor %}

All Assignments

{%- endif %}

{% include readings.md %}