layout | title | description | nav_order |
---|---|---|---|
page |
Staff |
A listing of all the course staff members. |
6 |
All office hours will be held virtually.
Links to join the TA and instructor office hours are posted in Canvas. TA Office Hours are hosted on Microsoft Teams, using the Khoury Office Hours app. Please see the user guide for information on how to log in and ask questions.
{% 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 %}
{% include officeHours.html %}
{% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}