layout | title | order |
---|---|---|
default |
People |
1 |
{% for person in site.data.people %}
{% if person.status == "faculty" %}
{% include person.html name=person.name img=person.img url=person.url %}
{% endif %}
{% endfor %}
{% for person in site.data.people %}
{% if person.status == "staff" %}
{% include person.html name=person.name img=person.img url=person.url %}
{% endif %}
{% endfor %}
{% for person in site.data.people %}
{% if person.status == "postdoc" %}
{% include person.html name=person.name img=person.img url=person.url %}
{% endif %}
{% endfor %}
{% for person in site.data.people %}
{% if person.status == "phd" %}
{% include person.html name=person.name img=person.img url=person.url %}
{% endif %}
{% endfor %}
Check out our many, many alumni here.