-
Notifications
You must be signed in to change notification settings - Fork 1
/
people.html
72 lines (62 loc) · 1.77 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: default
title: People
# groups of columns of {roles: list, width: num, image: bool}
member-tables:
- - roles: [faculty, postdoc]
width: 4
image: true
- roles: [phd, masters, intern, developer, visitor]
width: 4
image: true
alumni-tables:
- - roles: [postdoc-alum, phd-alum, masters-alum, intern-alum]
width: 4
image: false
---
<div class="card border-bottom-primary shadow py-2 mb-4">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="h2 font-weight-bold text-primary mb-1">Members</div>
</div>
</div>
</div>
</div>
<section id="people">
<div class="card shadow mb-4">
<div class="card-body">
{% for role-table in page.member-tables %}
{% for role-column in role-table %}
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
<br/>
{% endfor %}
{% endfor %}
{% endfor %}
</div>
</div>
</section>
<div class="card border-bottom-primary shadow py-2 mb-4">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="h2 font-weight-bold text-primary mb-1">Alumni</div>
</div>
</div>
</div>
</div>
<section id="people">
<div class="card shadow mb-4">
<div class="card-body">
{% for role-table in page.alumni-tables %}
{% for role-column in role-table %}
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
<br/>
{% endfor %}
{% endfor %}
{% endfor %}
</div>
</div>
</section>