title | permalink |
---|---|
Team |
/team/ |
{% assign people_sorted = site.people | sort: 'joined' %} {% assign role_array = "pi|co|researchstaff|postdoc|phdstudent|mscstudent|visiting|others|alumni" | 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 == 'co' %}
{% elsif role == 'pi' %}
{% elsif role == 'researchstaff' %}
{% elsif role == 'postdoc' %}
{% elsif role == 'phdstudent' %}
{% elsif role == 'mscstudent' %}
{% elsif role == 'visiting' %}
{% elsif role == 'others' %}
{% elsif role == 'alumni' %}
{% endif %}
{% if role != 'alumni' %}
{% for profile in people_sorted %}
{% if profile.position contains role %}
{% endif %}
{% endfor %}
{% if profile.avatar %} {% else %} {% endif %} {{ profile.name }}
{% else %}
Who are they | When were they here | Where they went |
---|---|---|
Tony Liu | Graduate Student (2018-2024) | Assistant Professor of Computer Science, Mount Holyoke College |
{% endif %} | ||
{% endfor %} |