layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
4 |
A listing of all the course staff members. |
{% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% for staffer in instructors %} {{ staffer }} {% endfor %}
{% assign supervisors = site.staffers | where: 'role', 'Faculty Supervisor' %} {% for staffer in supervisors %} {{ staffer }} {% endfor %}