Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 850 Bytes

File metadata and controls

48 lines (36 loc) · 850 Bytes
layout page
title Staff
description A listing of all the course staff members.
nav_order 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 %}