-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeople.html
More file actions
30 lines (29 loc) · 812 Bytes
/
Copy pathpeople.html
File metadata and controls
30 lines (29 loc) · 812 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
---
layout: default
title: People
sectionid: people
---
<div class="container">
{% for group in site.data.people %}
<h1>{{ group.category }}</h1>
<div class="row people-row">
{% for person in group.members %}
<div class="col-md-4 col-sm-6 person-card">
<img src="{{ person.photo | relative_url }}"
alt="{{ person.name }}"
class="person-photo">
<h4>
{% if person.website %}
<a href="{{ person.website }}">{{ person.name }}</a>
{% else %}
{{ person.name }}
{% endif %}
</h4>
<p>{{ person.role }}</p>
<p>{{ person.department }}</p>
</div>
{% endfor %}
</div>
<hr>
{% endfor %}
</div>