-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpeople.html
More file actions
49 lines (43 loc) · 1.35 KB
/
people.html
File metadata and controls
49 lines (43 loc) · 1.35 KB
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
---
layout: default
title: People
people-sections:
- title: Principal Investigator
roles: [pi]
- title: Postdoctoral Researchers
roles: [postdoc]
- title: Doctoral Students
roles: [phd]
alumni-roles: [alumni-postdoc, alumni-phd, alumni-masters, alumni-ugrad, alumni]
---
<img src="{{ site.baseurl }}/img/group-photo.jpg"
alt="Electrochemical Energy Group"
class="people-hero-image">
{% for section in page.people-sections %}
<section class="people-section">
<h2 class="people-section-title">{{ section.title }}</h2>
<div class="people-grid">
{% for role in section.roles %}
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role %}
{% include person-card.html person=person %}
{% endif %}
{% endfor %}
{% endfor %}
</div>
</section>
{% endfor %}
<section class="people-section">
<h2 class="people-section-title">Alumni</h2>
<ul class="alumni-list">
{% for role in page.alumni-roles %}
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role %}
{% include person-list-item.html person=person %}
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</section>