@@ -22,7 +22,7 @@ by an expert team of volunteer advisory members who help steer the direction of
2222
2323{% assign advisory_sorted = site.data.contributors | where:"board",true | sort: 'sort' %}
2424
25- <div class =" grid " >
25+ <div class =" grid executive-council-grid " >
2626{% for aperson in advisory_sorted %}
2727 {% include people-grid.html %}
2828{% endfor %}
@@ -39,14 +39,14 @@ pyOpenSci advisory council members are volunteer experts in the scientific
3939Python open source space who provide high-level guidance on the development of
4040the organization.
4141
42- {% assign advisory_working = site.data.contributors | where:"advisory",true | sort: 'sort' %}
42+ {% assign advisory_unsorted = site.data.contributors | where:"advisory",true %}
43+ {% assign advisory_with_sort = advisory_unsorted | where_exp:"item","item.sort != nil" | sort: 'sort' %}
44+ {% assign advisory_without_sort = advisory_unsorted | where_exp:"item","item.sort == nil" %}
45+ {% assign advisory_working = advisory_with_sort | concat: advisory_without_sort %}
4346
44- <div class =" grid " >
47+ <div class =" grid advisory-council-grid " >
4548{% for aperson in advisory_working %}
46- {% if aperson.advisory %}
47- {{ aperson.person_name }}
48- {% include people-grid.html %}
49- {% endif %}
49+ {% include people-grid.html %}
5050{% endfor %}
5151</div >
5252
@@ -61,7 +61,7 @@ leadership councils.
6161
6262{% assign emeritus_advisory = site.data.contributors | where:"emeritus_advisory", true %}
6363
64- <div class =" grid " >
64+ <div class =" grid emeritus-council-grid " >
6565{% for aperson in emeritus_advisory %}
6666 {{ aperson.person_name }}
6767 {% include people-grid.html %}
@@ -77,12 +77,11 @@ leadership councils.
7777{: .clearall }
7878{: .clearall }
7979
80- {% assign editorial = site.data.contributors | where:"editorial_board", true %}
80+ {% assign editorial = site.data.contributors | where:"editorial_board", true | sort: 'sort' %}
8181
82- <div class =" grid " >
82+ <div class =" grid advisory-council-grid " >
8383{% for aperson in editorial %}
84- {{ aperson.person_name }}
85- {% include people-grid.html %}
84+ {% include people-grid.html %}
8685{% endfor %}
8786</div >
8887
0 commit comments