layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
5 |
A listing of all the course staff members. |
All the people involved in this course!
{% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% for staffer in instructors %} {{ staffer }} {% endfor %}
{% assign head_teaching_assistants = site.staffers | where: 'role', 'Head Teaching Assistant' %} {% for staffer in head_teaching_assistants %} {{ staffer }} {% endfor %}
{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} {% for staffer in teaching_assistants %} {{ staffer }} {% endfor %}