Skip to content

Latest commit

 

History

History
51 lines (46 loc) · 1.69 KB

people.md

File metadata and controls

51 lines (46 loc) · 1.69 KB
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 %}

{% 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 }}

{% endif %} {% endfor %}

Alumni

{% 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 %}