You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: People
|
|
|
|
|
|
|
|
picture-role-groups:
|
|
|
|
- {roles: [faculty, postdoc, staff], width: 4}
|
|
|
|
- {roles: [grad], width: 8}
|
|
|
|
|
|
|
|
no-picture-role-groups:
|
|
|
|
- {roles: [collab, ugrad, ugrad-alum], width: 5}
|
|
|
|
- {roles: [alum], width: 7}
|
|
|
|
---
|
|
|
|
|
|
|
|
<section class="people row justify-content-between">
|
|
|
|
{% for role-group in page.picture-role-groups %}
|
|
|
|
<div class="col-md-{{ role-group.width }}">
|
|
|
|
{% for role in role-group.roles %}
|
|
|
|
{% include role-people.html role=role image=true %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="people row justify-content-between">
|
|
|
|
{% for role-group in page.no-picture-role-groups %}
|
|
|
|
<div class="col-md-{{ role-group.width }}">
|
|
|
|
{% for role in role-group.roles %}
|
|
|
|
{% include role-people.html role=role image=false %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|