layout | title | description |
---|---|---|
page |
Staff |
Data 8 Fall 2022 Staff |
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
All office hours are held in-person in Warren 101 unless otherwise specified
{% assign leads = site.staffers | where: 'role', 'Lead GSI' %}
{% for staffer in leads %}
{{ staffer }}
{% endfor %}
All office hours are held in-person in Warren 101 unless otherwise specified
{% assign teaching_assistants = site.staffers | where: 'role', 'GSI' %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
{% assign tutors = site.staffers | where: 'role', 'Tutor' %}
{% for staffer in tutors %}
{{ staffer }}
{% endfor %}
{% assign readers = site.staffers | where: 'role', 'Reader' %}
{% for staffer in readers %}
{{ staffer }}
{% endfor %}
<script src="../assets/darkmode.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
onLoad();
});
</script>