We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f95d9f commit 0b847dfCopy full SHA for 0b847df
docs/facilitators.md
@@ -90,7 +90,15 @@ layout: home
90
Running CRUP would not be possible without these amazing people!
91
92
<div class="role">
93
-{% for person in site.people %}
+{% 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 %}
102
{{ person }}
103
{% endfor %}
104
</div>
0 commit comments