Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 850 Bytes

staff.md

File metadata and controls

48 lines (36 loc) · 850 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 Assistants

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

Tutors

{% assign tutors = site.staffers | where: 'role', 'Tutor' %}

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