layout | title | description | nav_order |
---|---|---|---|
page |
🙋 Staff |
A listing of all methodology course staff. |
7 |
See the Office Hours page for the office hours schedule. If you'd like to meet with someone and can't make it to their office hours, feel free to send them an email to schedule an appointment.
{% 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 %}