Skip to content

Commit 0b847df

Browse files
VP of Education come first
1 parent 5f95d9f commit 0b847df

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/facilitators.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,15 @@ layout: home
9090
Running CRUP would not be possible without these amazing people!
9191

9292
<div class="role">
93-
{% for person in site.people %}
93+
{% assign edvps = site.people | where: 'role', 'VP of Education' %}
94+
{% for person in edvps %}
95+
{{ person }}
96+
{% endfor %}
97+
</div>
98+
99+
<div class="role">
100+
{% assign others = site.people | where_exp: 'person', 'person.role != "VP of Education"' %}
101+
{% for person in others %}
94102
{{ person }}
95103
{% endfor %}
96104
</div>

0 commit comments

Comments
 (0)