Skip to content

Latest commit

 

History

History
executable file
·
69 lines (59 loc) · 2.3 KB

people.md

File metadata and controls

executable file
·
69 lines (59 loc) · 2.3 KB
title permalink
People
/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
Junette Hsin MS in ASE (2023) PhD student in HCRL
Vincent Spada Undergraduate in ASE (2023) Flight dynamics, NASA Langley
Tyler Westenbroek Postdoc in Oden Institute (2023) Postdoc in CS at UW
Bryant Zhou MS in ME (2022) PhD student in MAE at Princeton

{% endif %} {% endfor %}