forked from calipr/calipr.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeople.html
More file actions
executable file
·36 lines (33 loc) · 921 Bytes
/
people.html
File metadata and controls
executable file
·36 lines (33 loc) · 921 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
---
layout: default
title: People
---
<!-- <p>Some of the group in action (apparently Mark, Karin, Jacob, Vincent, Carlo were off doing real work).</p> -->
<!-- <div class="inset-image"> -->
<!-- <img src="{{ site.base }}/img/sampayak.jpg" alt="Sampa-yak" -->
<!-- class="img-responsive img-rounded"> -->
<!-- </div> -->
{% for role in site.roles %}
<h3>{{ role.name }}</h3>
<dl class="people">
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role.key %}
<dt class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
{% endif %}
{{ person.display_name }}
{% if person.webpage %}
</a>
{% endif %}
</dt>
<dd>
{% if person.bio %}
{{ person.bio | markdownify }}
{% endif %}
</dd>
{% endif %}
{% endfor %}
</dl>
{% endfor %}