-
Notifications
You must be signed in to change notification settings - Fork 8
/
people.html
executable file
·45 lines (38 loc) · 991 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
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
title: People
# groups of columns of {roles: list, width: num, image: bool}
role-tables:
- - roles: [faculty, staff]
width: 12
image: true
- roles: [grad]
width: 12
image: true
- roles: [ra]
width: 12
image: true
- - roles: [pgrad, ugrad]
width: 12
image:
alum-role:
- - roles: [alum]
width: 12
image: false
---
<!-- Add this above for postdoc -->
<!-- - roles: [postdoc]
width: 12
image: true -->
<!-- Calling role-people.html -->
{% for role-table in page.role-tables %}
<section class="people row justify-content-between">
{% for role-column in role-table %}
<div class="col-md-{{ role-column.width }}">
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
{% endfor %}
</div>
{% endfor %}
</section>
{% endfor %}