-
Notifications
You must be signed in to change notification settings - Fork 23
/
members.html
53 lines (49 loc) · 1.28 KB
/
members.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: default
title: Members
---
<h1>Members</h1>
<h2>Active Members</h2>
<ul>
{% for author in site.authors %}
{% if author.captain == true and author.emeritus != true %}
<li>
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
<h3>Team Captain</h3>
<h3>{{ author.position }}</h3>
<p>{{ author.content | markdownify }}</p>
</li>
{% endif %}
{% endfor %}
{% for author in site.authors %}
{% if author.captain != true and author.emeritus != true %}
<li>
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
<h3>{{ author.position }}</h3>
<p>{{ author.content | markdownify }}</p>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Emeritus</h2>
<ul>
{% for author in site.authors %}
{% if author.captain == true and author.emeritus == true %}
<li>
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
<h3>Former Captain</h3>
<h3>{{ author.position }}</h3>
<p>{{ author.content | markdownify }}</p>
</li>
{% endif %}
{% endfor %}
{% for author in site.authors %}
{% if author.emeritus == true and author.captain != true %}
<li>
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
<h3>{{ author.position }}</h3>
<p>{{ author.content | markdownify }}</p>
</li>
{% endif %}
{% endfor %}
</ul>