layout | title | description | nav_order |
---|---|---|---|
page |
🧑🏫 Staff |
A listing of all the course staff members. |
4 |
Jump to: Instructors, Head Teaching Assistants, Teaching Assistants, Tutors
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
Email [email protected] for all logistical and student support questions!
{% assign head_teaching_assistants = site.staffers | where: 'role', '20-hour Lead uGSI (UCS2)' %} {% assign num_head_teaching_assistants = head_teaching_assistants | size %} {% if num_head_teaching_assistants != 0 %}
{% for staffer in head_teaching_assistants %}
{{ staffer }}
{% endfor %}
{% endif %}
{% assign teaching_assistants = site.staffers | where: 'role', 'uGSI (UCS2)' %} {% assign num_teaching_assistants = teaching_assistants | size %} {% if num_teaching_assistants != 0 %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
{% endif %}
{% assign tutors = site.staffers | where: 'role', 'Tutor (UCS1)' %} {% assign num_tutors = tutors | size %} {% if num_tutors != 0 %}
{% for staffer in tutors %}
{{ staffer }}
{% endfor %}
{% endif %}