Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 1.02 KB

staff.md

File metadata and controls

54 lines (43 loc) · 1.02 KB
layout title description nav_order
page
Staff
A listing of all the course staff members.
10

Staff

Add 'berkeley.edu' to the end of all emails.

Instructor

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

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

Head UCS-2 (Head Teaching Assistant)

{% assign HeadTA = site.staffers | where: 'role', 'Head TA' %}

{% for staffer in HeadTA %} {{ staffer }} {% endfor %}

UCS-2 (Teaching Assistant)

{% assign LabTA = site.staffers | where: 'role', 'Lab TA' %}

{% for staffer in LabTA %} {{ staffer }} {% endfor %}

UCS-1s (Tutors)

{% assign OHTA = site.staffers | where: 'role', 'OH TA' %}

{% for staffer in OHTA %} {{ staffer }} {% endfor %}

Academic Interns

{% assign AI = site.staffers | where: 'role', 'Academic Intern' %}

{% for staffer in AI %} {{ staffer }} {% endfor %}