Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 566 Bytes

File metadata and controls

24 lines (18 loc) · 566 Bytes
layout title nav_order description
page
Staff
4
A listing of all the course staff members.

Staff

Staff information is stored in the _staffers directory and rendered according to the layout file, _layouts/staffer.html.

Instructors

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

Teaching Assistants

{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} {% for staffer in teaching_assistants %} {{ staffer }} {% endfor %}