Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1014 Bytes

staff.md

File metadata and controls

55 lines (43 loc) · 1014 Bytes
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 Teaching Assistant

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

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

Teaching Assistants

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

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

Tutors

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

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

Academic Interns (AIs)

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

{% for staffer in ai %} {{ staffer }} {% endfor %}