Skip to content

Commit

Permalink
Sort alumni by level, surname, othernames
Browse files Browse the repository at this point in the history
Reverses the sort order to match the peoeple page, so the final view is grouped by level, then surname, then othernames.
  • Loading branch information
ptheywood authored Nov 15, 2023
1 parent 31d044e commit 602249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/contact/alumni.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: text

Previous members of the RSE Sheffield team:

{% assign people = site.people | sort: 'level' | sort: 'surname' | sort: 'othernames' %}
{% assign people = site.people | sort: 'othernames' | sort: 'surname' | sort: 'level' %}
<div class="people-list">
{% for person in people %}
{% if person.alumnum == true %}
Expand Down

0 comments on commit 602249c

Please sign in to comment.