Skip to content

Latest commit

 

History

History
50 lines (45 loc) · 1.28 KB

members.md

File metadata and controls

50 lines (45 loc) · 1.28 KB
layout title permalink
page_select
/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 %}