forked from pramodiisc/ppalcx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpeople.html
More file actions
executable file
·35 lines (31 loc) · 1010 Bytes
/
people.html
File metadata and controls
executable file
·35 lines (31 loc) · 1010 Bytes
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
33
34
35
---
layout: default
title: People
picture-role-groups:
- {roles: [faculty, collaborator], width: 3}
- {roles: [phd], width: 3}
- {roles: [masters, ug], width: 3}
- {roles: [staff], width: 3}
no-picture-role-groups:
- {roles: [intern-alum], width: 4}
- {roles: [intern, fellow], width: 4}
- {roles: [alum], width: 4}
---
<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>