Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 1020 Bytes

staff.md

File metadata and controls

56 lines (43 loc) · 1020 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 staff = site.staffers | where: 'role', 'Head TA' %}

{% for staffer in staff %} {{ staffer }} {% endfor %}

Teaching Assistants

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

{% for staffer in staff %} {{ staffer }} {% endfor %}

Readers

{% assign readers = site.staffers | where: 'role', 'Reader' %}

{% for staffer in readers %} {{ staffer }} {% endfor %}

Academic Interns (AI's)

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

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