Skip to content

Commit

Permalink
fixed flex
Browse files Browse the repository at this point in the history
  • Loading branch information
brandosu committed Aug 23, 2024
1 parent daf5cfd commit adaea1d
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions staff.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,41 +7,52 @@ nav_order: 4

# **Staff**

Staff information is stored in the `_staffers` directory and rendered according to the layout file, `_layouts/staffer.html`.
<!-- Staff information is stored in the `_staffers` directory and rendered according to the layout file, `_layouts/staffer.html`. -->

## Instructors

<div class="role flex">
{% assign instructors = site.staffers | where: 'role', 'Instructor' %}
{% for staffer in instructors %}
{{ staffer }}
{% endfor %}
</div>

## Head Teaching Assistants

{% assign head_teaching_assistants = site.staffers | where: 'role', '20-hour Lead uGSI (UCS2)' %}
{% assign num_head_teaching_assistants = head_teaching_assistants | size %}
{% if num_head_teaching_assistants != 0 %}
## Head Teaching Assistants

<div class="role flex">
{% for staffer in head_teaching_assistants %}
{{ staffer }}
{% endfor %}
{% endif %}
</div>

## Teaching Assistants

{% assign teaching_assistants = site.staffers | where: 'role', 'uGSI (UCS2)' %}
{% assign num_teaching_assistants = teaching_assistants | size %}
{% if num_teaching_assistants != 0 %}
## Teaching Assistants


<!-- <div class="role flex"> -->
{% for staffer in teaching_assistants %}
{{ staffer }}
{% endfor %}
{% endif %}
<!-- </div> -->

## Tutors
{% assign tutors = site.staffers | where: 'role', 'Tutor' %}
{% assign num_tutors = tutors | size %}
{% if num_tutors != 0 %}
## Tutors

<!-- <div class="role flex"> -->
{% for staffer in tutors %}
{{ staffer }}
{% endfor %}
{% endif %}
<!-- </div> -->

0 comments on commit adaea1d

Please sign in to comment.