Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 1.01 KB

members.md

File metadata and controls

41 lines (36 loc) · 1.01 KB
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' %}

Postdoctoral Fellows

{% elsif item == 'pi' %}

Principal Investigators

{% elsif item == 'collab' %}

Collaborators

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