layout | title | description |
---|---|---|
page |
Staff |
Data 8 Fall 2023 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', '20-hour Lead uGSI (UCS2)' %}
{% 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', 'uGSI (UCS2)' %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
{% assign tutors = site.staffers | where: 'role', 'Tutor (UCS1)' %}
{% for staffer in tutors %}
{{ staffer }}
{% endfor %}
<script src="../assets/darkmode.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
onLoad();
});
</script>