Skip to content

Latest commit

 

History

History
executable file
·
163 lines (153 loc) · 9.73 KB

index.md

File metadata and controls

executable file
·
163 lines (153 loc) · 9.73 KB
layout
page

{% assign people_sorted = site.people | sort: 'joined' %} {% assign role_array = "pi|postdoc|grad|ugrad" | split: "|" %}

{% for role in role_array %}

{% assign people_in_role = people_sorted | where: 'position', role %}

{% if people_in_role.size == 0%} {% continue %} {% endif %}

{% if role == 'postdoc' %}

Postdoctoral Fellows

{% elsif role == 'pi' %}

Principal Investigator

{% elsif role == 'grad' %}

Graduate Students

{% elsif role == 'ugrad' %}

Undergraduate Students

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

{% if profile.avatar %} {% else %} {% endif %} {{ profile.name }}

{% endif %} {% endfor %}
{% endfor %}

Alumni