layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
4 |
A listing of all the course staff members. |
We are lucky to be advised by Peyrin Kao, the lecturer for CS 161 and CS 188.
{% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% for staffer in instructors %} {{ staffer }} {% endfor %}
{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} {% assign num_teaching_assistants = teaching_assistants | size %} {% if num_teaching_assistants != 0 %}
{% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}