-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeople.html
More file actions
executable file
·73 lines (63 loc) · 1.64 KB
/
people.html
File metadata and controls
executable file
·73 lines (63 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
layout: default
menu: People
icon: fa fa-users
title: The Team
title_height: 70px
image:
- file: /images/header/people/starfish.jpg
image_height: 200px
category: people
permalink: /people/
filters:
- label: Faculty
id: faculty
- label: Postdocs
id: postdoc
- label: Grad Students
id: grad
- label: Undergraduates
id: undergrad
- label: Staff
id: staff
grid: |
masonry: {
columnWidth: 292, // also needs changing in style.scss $people-image-width
gutter: 20,
isFitWidth: true
}
weight: 1
---
<br />
<div class="people-grid">
<!-- Filters -->
<div class="filters">
<div id="filters" class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active" data-filter="*"><input type="radio" checked> All</label>
{% for filter in page.filters %}
<label class="btn btn-primary" data-filter=".{{ filter.id }}"><input type="radio">{{ filter.label }}</label>
{% endfor %}
</div>
</div>
<h3>Geomicrobial Physiology Lab</h3>
<div class="grid">
{% assign people = site.people_team | sort:"weight" %}
{% for person in people %}
{% include grid_person.html person=person %}
{% endfor %}
</div>
<h3 id="collaborators">Joint Labs & Close Collaborators</h3>
<div class="grid">
{% assign people = site.people_collaborators | sort:"weight" %}
{% for person in people %}
{% include grid_person.html person=person %}
{% endfor %}
</div>
<h3 id="alumni">Alumni</h3>
<div class="grid">
{% assign people = site.people_alumni | sort:"weight" %}
{% for person in people %}
{% include grid_person.html person=person %}
{% endfor %}
</div>
</div>