Skip to content
Snippets Groups Projects
Commit 9ee67335 authored by Kevin Lin's avatar Kevin Lin :sparkles:
Browse files

staff.md: Remove role div

parent bf93b6dd
No related branches found
No related tags found
No related merge requests found
......@@ -11,18 +11,14 @@ Staff information is stored in the `_staffers` directory and rendered according
## Instructors
<div class="role">
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
</div>
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
## Teaching Assistants
<div class="role">
{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
</div>
{% assign teaching_assistants = site.staffers | where: 'role', 'Teaching Assistant' %}
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment