Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 1.24 KB

File metadata and controls

42 lines (38 loc) · 1.24 KB
title People
permalink /people/

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

{% for item in people_array %}

{% if item == 'postdoc' %}

Postdoctoral Fellows

{% elsif item == 'pi' %}

Principal Investigator

{% elsif item == 'gradstudent' %}

Graduate Students

{% elsif item == 'visiting' %}

Visiting Scholars

{% elsif item == 'others' %}

Honorary Members

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

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

{% endif %} {% endfor %}

{% endfor %}