Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 970 Bytes

File metadata and controls

39 lines (34 loc) · 970 Bytes
layout page
title
permalink /people/

{% assign people_sorted = (site.people | sort: 'joined' %} {% assign people_array = "pi|postdoc|gradstudent|engineer|alumni" | split: "|" %}

{% for item in people_array %}

{% if item == 'postdoc' %}

Postdoctoral Fellows

{% elsif item == 'pi' %}

Principal Investigators

{% elsif item == 'gradstudent' %}

Graduate Students

{% elsif item == 'engineer' %}

Research Engineers

{% elsif item == 'visiting' %}

Visiting Scholars

{% elsif item == 'alumni' %}

Alumni

{% endif %}
{% for profile in people_sorted %} {% if profile.position contains item %} {% endif %} {% endfor %}

{% endfor %}