Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 2.18 KB

File metadata and controls

66 lines (57 loc) · 2.18 KB
title permalink
Members
/members/

{% assign people_sorted = site.members | sort: 'seniority' %}

{% assign role_array = "pi|postdoc|gradstudent|researchstaff|visiting|others|alumni" | split: "|" %} {% for role in role_array %} {% assign people_in_role = people_sorted | where: 'role', 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 == 'alumni' %}

Alumni

{% endif %}

{% if role != 'alumni' %}

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

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

{% endif %} {% endfor %}

{% else %}


Who are they When were they here Where they went
Jingwen Ren Graduate Student (2017-2022) Facebook research
Quengin Jianzhi Yang Graduate Student (2018-2023) Google AI
Tony Tsung-Yu Lu Graduate Student (2017-2022), Postdoc 2023-2024 Natera
Robel Dagnew Masters Student (2017-2020) Keck SOM, CDC
{% endif %}
{% endfor %}