Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.46 KB

staff.md

File metadata and controls

57 lines (45 loc) · 1.46 KB
layout title description nav_order
page
Staff
A listing of all the course staff members.
4

Staff

Staff information is stored in the _staffers directory and rendered according to the layout file, _layouts/staffer.html.

Instructors

{% assign instructors = site.staffers | where: 'role', 'Instructor' %} {% for staffer in instructors %} {{ staffer }} {% endfor %}

{% assign head_teaching_assistants = site.staffers | where: 'role', 'Head Teaching Assistant' %} {% assign num_head_teaching_assistants = head_teaching_assistants | size %} {% if num_head_teaching_assistants != 0 %}

Head Teaching Assistants

{% for staffer in head_teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}

{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %} {% assign num_teaching_assistants = teaching_assistants | size %} {% if num_teaching_assistants != 0 %}

Teaching Assistants

{% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}

{% assign tutors = site.staffers | where: 'role', 'Tutor' %} {% assign num_tutors = tutors | size %} {% if num_tutors != 0 %}

Tutors

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

{% assign academic_interns = site.staffers | where: 'role', 'Academic Intern' %} {% assign num_academic_interns = academic_interns | size %} {% if num_academic_interns != 0 %}

Academic Interns

{% for staffer in academic_interns %} {{ staffer }} {% endfor %} {% endif %}