Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 902 Bytes

File metadata and controls

36 lines (28 loc) · 902 Bytes
layout page
title Staff
description A listing of all the course staff members.

{: .warning } ⚠️ This content is archived as of March 2026 and is retained exclusively for reference. Find current offerings.

Instructors

{% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% for staffer in instructors %} {{ staffer }} {% endfor %}

{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} {% assign num_teaching_assistants = teaching_assistants | size %} {% if num_teaching_assistants != 0 %}

Teaching Assistants

{% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}

{% assign readers = site.staffers | where: 'role', 'Reader' %} {% assign num_readers = readers | size %} {% if num_readers != 0 %}

Readers

{% for staffer in readers %} {{ staffer }} {% endfor %} {% endif %}