Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1001 Bytes

staff.md

File metadata and controls

47 lines (36 loc) · 1001 Bytes
layout title nav_order description
page
Staff
3
A listing of all the course staff members.

Staff

Instructors

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

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

{% if num_teaching_assistants != 0 %}

Teaching Assistants

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

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

{% 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 %}