layout | title | permalink |
---|---|---|
page |
/people/ |
{% assign people_sorted = (site.people | sort: 'joined' %} {% assign people_array = "pi|postdoc|gradstudent|engineer|collab|alumni" | split: "|" %}
{% for item in people_array %}
{% if item == 'postdoc' %}
{% elsif item == 'pi' %}
{% elsif item == 'collab' %}
{% elsif item == 'gradstudent' %}
{% elsif item == 'engineer' %}
{% elsif item == 'visiting' %}
{% elsif item == 'alumni' %}
{% endif %}
{% for profile in people_sorted %}
{% if profile.position contains item %}
{% endif %}
{% endfor %}
{% endfor %}