Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 937 Bytes

staff.md

File metadata and controls

52 lines (41 loc) · 937 Bytes
layout title description nav_order
page
Staff
A listing of all the course staff members.
10

Staff

Heads

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

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

Discussion TAs

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

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

Lab TAs

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

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

Readers

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

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

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

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