forked from BNLNPPS/BNLNPPS.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwho.html
35 lines (27 loc) · 732 Bytes
/
who.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
---
title: NPPS Who's Who
layout: default
---
<h1> Who we are </h1>
<br>
<p>
Group leader: <a href="/people/wenaus.html">Torre Wenaus</a>
</p>
<h2>NPPS leadership team</h2>
{% for who in site.people %}
{% if who.tags contains 'leader' %}
<p><a href="{{ who.url }}" role="button">{{ who.title }}</a></p>
{% endif %}
{% endfor %}
<h2>NPPS group members</h2>
{% for who in site.people %}
{% if who.tags contains 'member' %}
<p><a href="{{ who.url }}" role="button">{{ who.title }}</a></p>
{% endif %}
{% endfor %}
<h2>NPPS collaborators</h2>
{% for who in site.people %}
{% if who.tags contains 'collaborator' %}
<p><a href="{{ who.url }}" role="button">{{ who.title }}</a></p>
{% endif %}
{% endfor %}