Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 937 Bytes

File metadata and controls

52 lines (41 loc) · 937 Bytes
layout page
title Staff
description A listing of all the course staff members.
nav_order 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 %}