Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 941 Bytes

File metadata and controls

38 lines (31 loc) · 941 Bytes
layout page
title Staff
description A listing of all the course staff members.

Staff


{% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} {% assign head_tas = teaching_assistants | where: 'headta', true %} {% assign supporting_tas = teaching_assistants | where_exp: 'ta', 'ta.headta != true' | sort: 'name' %} {% assign num_teaching_assistants = teaching_assistants | size %}

Instructors

{% for staffer in instructors %}
{{ staffer }}
{% endfor %}

{% if num_teaching_assistants != 0 %}

Teaching Assistants

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