Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 803 Bytes

staff.md

File metadata and controls

45 lines (35 loc) · 803 Bytes
layout title description nav_order
page
Staff
A listing of all the course staff members.
10

Staff

Instructors

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

{% for staffer in instructors %} {{ staffer }} {% endfor %}

Head Teaching Assistant

{% assign staff = site.staffers | where: 'role', 'Head TA' %}

{% for staffer in staff %} {{ staffer }} {% endfor %}

Teaching Assistants

{% assign staff = site.staffers | where: 'role', 'TA' %}

{% for staffer in staff %} {{ staffer }} {% endfor %}

Readers

{% assign readers = site.staffers | where: 'role', 'Reader' %}

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