Skip to content

Latest commit

 

History

History
64 lines (58 loc) · 1.45 KB

index.md

File metadata and controls

64 lines (58 loc) · 1.45 KB
layout title order
default
People
1
<style type="text/css"> .people { display: flex; flex-direction: row; flex-wrap: wrap; } </style>

People

Faculty

{% for person in site.data.people %} {% if person.status == "faculty" %} {% include person.html name=person.name img=person.img url=person.url %} {% endif %} {% endfor %}

Research Staff

{% for person in site.data.people %} {% if person.status == "staff" %} {% include person.html name=person.name img=person.img url=person.url %} {% endif %} {% endfor %}

Postdocs

{% for person in site.data.people %} {% if person.status == "postdoc" %} {% include person.html name=person.name img=person.img url=person.url %} {% endif %} {% endfor %}

Ph.D. Students

{% for person in site.data.people %} {% if person.status == "phd" %} {% include person.html name=person.name img=person.img url=person.url %} {% endif %} {% endfor %}

Alumni

Check out our many, many alumni here.