| layout | page |
|---|---|
| title | Staff |
| description | A listing of all the course staff members. |
The course is coordinated and taught by the instructor Prof. Ambuj Varshney. The teaching assistant help with the tutorial sessions, grading of the assignments and projects. The support staff may help with the troubleshooting of IoT devices and with the course logistics.
{% 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 %}
{% assign support_staff = site.staffers | where: 'role', 'Support Staff' %} {% assign num_support_staff = support_staff | size %} {% if num_support_staff != 0 %}
{% for staffer in teaching_assistants %} {{ staffer }} {% endfor %} {% endif %}
{% for staffer in support_staff %} {{ staffer }} {% endfor %} {% endif %}