Skip to content

Latest commit

 

History

History
71 lines (52 loc) · 1.85 KB

staff.md

File metadata and controls

71 lines (52 loc) · 1.85 KB
layout title description nav_order
page
🧑‍🏫 Staff
A listing of all the course staff members.
4

Staff

We hope you enjoy Data 8 as much as we did! Hover over some of our icons for a fun surprise :0

Jump to: Instructors, Head Teaching Assistants, Teaching Assistants, Tutors

Instructors

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

Head Teaching Assistants

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 %}

Teaching Assistants

{% 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 %}

Tutors

{% assign tutors = site.staffers | where: 'role', 'Tutor (UCS1)' %} {% assign num_tutors = tutors | size %} {% if num_tutors != 0 %}

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