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' %}
{% elsif role == 'pi' %}
{% elsif role == 'gradstudent' %}
{% elsif role == 'researchstaff' %}
{% elsif role == 'visiting' %}
{% elsif role == 'others' %}
{% elsif role == 'undergraduate' %}
{% 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 |
---|---|---|
Antonio Lopez | MS student in ASE (2021-2023) | Pacific Northwest National Lab |
Andriy Malyshchak | Undergraduate student in ECE (2022-2023) | Texas Robotics |
Jonathan Salfity | PhD student in ME (2021-2023) | PhD student with NRG |
Junette Hsin | MS student in ASE (2022-2023) | PhD student in HCRL |
Vincent Spada | Undergraduate student in ASE (2023) | Flight dynamics, NASA Langley |
Tyler Westenbroek | Postdoc in Oden Institute (2023) | Postdoc in CS at UW |
Bryant Zhou | MS student in ME (2021-2022) | PhD student in MAE at Princeton |
{% endif %} {% endfor %}