Skip to content

Latest commit

 

History

History
executable file
·
66 lines (56 loc) · 1.94 KB

File metadata and controls

executable file
·
66 lines (56 loc) · 1.94 KB
title People
permalink /people/

{% assign people_sorted = site.people | sort: 'joined' %} {% assign role_array = "pi|postdoc|gradstudent|researchstaff|visiting|others|undergraduate|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 == 'postdoc' %}

Postdoctoral Fellows

{% elsif role == 'pi' %}

Principal Investigator

{% elsif role == 'gradstudent' %}

Graduate Students

{% elsif role == 'researchstaff' %}

Research Staff

{% elsif role == 'visiting' %}

Visiting Scholars

{% elsif role == 'others' %}

Honorary Members

{% elsif role == 'undergraduate' %}

Undergraduate Students

{% 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
Bryant Zhou MS in ME (2021 - 2022) PhD student in MAE at Princeton

{% endif %} {% endfor %}