-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
37 lines (36 loc) · 913 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
---
layout: default
title: People
---
{% for role in site.roles %}
<h3>{{ role.name }}</h3>
<dl class="people">
<br>
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role.key %}
<div class="people-info">
<dt class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
{% endif %}
{{ person.display_name }}
{% if person.webpage %}
</a>
{% endif %}
</dt>
<dd class="person-bio">
{% if person.bio %}
{{ person.bio | markdownify }}
{% endif %}
</dd>
<p>
{% if person.img %}
<img class="people-img" src={{ person.img }}></img>
{% endif %}
</p>
</div>
{% endif %}
{% endfor %}
</dl>
{% endfor %}