layout | title | nav_order | description |
---|---|---|---|
page |
Staff |
5 |
A listing of all the course staff members. |
Email the instructor with any questions about the class.
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
{% assign staff = site.staffers | where: 'role', 'Staff' %}
{% for staffer in staff %}
{{ staffer }}
{% endfor %}