title | layout | permalink | class |
---|---|---|---|
People |
page |
/people/all.html |
people |
{% assign sorted = site.people | sort: 'ordering' %} {% assign sorted_alumni_ascending = site.people | sort: 'year-graduated' %} {% assign sorted_alumni = sorted_alumni_ascending | reverse %}
{% for people in sorted %} {% if people.status == "current" %}
{% if people.picture-link != blank %} {{ people.name }} {% elsif people.generate-extra-page %} {{ people.name }} {% else %} {{ people.name }} {% endif %}
{{ people.program }}, {{ people.email }} {{ people.excerpt | markdownify }}
{% for people in sorted_alumni %} {% if people.status == "alumnus" %}
- {{ people.name }}, {{ people.program }} {{ people.year-graduated }}{% if people.current-position != blank %} --- currently, {{ people.current-position }} {% endif %} {% endif %} {% endfor %}