Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 539 Bytes

staff.md

File metadata and controls

24 lines (19 loc) · 539 Bytes
layout title description
page
Staff
A listing of all the course staff members.

Staff

Instructors

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

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

Course Assistants

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