layout | title | description |
---|---|---|
page |
Staff |
DSC 204A Winter 2024 Staff |
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
{% assign teaching_assistants = site.staffers | where: 'role', 'Teach Assistant' %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
<script src="../assets/darkmode.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
onLoad();
});
</script>