layout | title | description | nav_order |
---|---|---|---|
page |
Staff |
A listing of all the course staff members. |
4 |
Staff information is stored in the _staffers
directory and rendered according to the layout file, _layouts/staffer.html
.
{% 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 %}
{% 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 %}
{% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}
{% assign tutors = site.staffers | where: 'role', 'Tutor' %} {% assign num_tutors = tutors | size %} {% if num_tutors != 0 %}
{% 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 %}
{% for staffer in academic_interns %} {{ staffer }} {% endfor %} {% endif %}