Skip to content

Latest commit

 

History

History
executable file
·
67 lines (58 loc) · 1.91 KB

team.md

File metadata and controls

executable file
·
67 lines (58 loc) · 1.91 KB
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' %}

Co-PIs

{% elsif role == 'pi' %}

Lead PI

{% elsif role == 'researchstaff' %}

Research Staff

{% elsif role == 'postdoc' %}

Postdoctoral Fellows

{% elsif role == 'phdstudent' %}

PhD Students

{% elsif role == 'mscstudent' %}

MSc Students

{% elsif role == 'visiting' %}

Visiting Scholars

{% elsif role == 'others' %}

Others

{% elsif role == 'alumni' %}

Alumni

{% endif %}

{% if role != 'alumni' %}

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

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

{% endif %} {% endfor %}

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