-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpeople.html
More file actions
41 lines (33 loc) · 965 Bytes
/
people.html
File metadata and controls
41 lines (33 loc) · 965 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
31
32
33
34
35
36
37
38
39
40
41
---
title: People
layout: default
permalink: /people/
---
<h2 id="core-team">Core Team</h2>
{% for person in site.data.team %}
<div class="person core-team">
{% if person.image %}
<img src="{{ site.baseurl }}/img/people/{{ person.image }}" class="headshot">
{% endif %}
<h3>{{ person.name }}, {{ person.role }}</h3>
{{ person.description | markdownify }}
{% if person.twitter %}
<a href="https://twitter.com/{{ person.twitter }}">@{{ person.twitter }}</a>
{% endif %}
</p>
</div>
{% endfor %}
<h2 id="volunteers">Volunteers</h2>
{% for person in site.data.volunteers %}
<div class="person">
{% if person.image %}
<img src="{{ site.baseurl }}/img/people/{{ person.image }}" class="headshot">
{% endif %}
<p>
<strong>{{ person.name }}</strong> {{ person.description }}
{% if person.twitter %}
<a href="https://twitter.com/{{ person.twitter }}">@{{ person.twitter }}</a>
{% endif %}
</p>
</div>
{% endfor %}