-
Notifications
You must be signed in to change notification settings - Fork 405
/
people.html
32 lines (28 loc) · 925 Bytes
/
people.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
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>