forked from ubcctf/ubcctf.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.html
43 lines (40 loc) · 953 Bytes
/
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
---
layout: default
title: Members
---
<h1>Members</h1>
<ul>
{% for author in site.authors %}
{% if author.former_captain == true %}
<li>
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
<h3>Former Leader</h3>
<h3>{{ author.position }}</h3>
<p>{{ author.content | markdownify }}</p>
</li>
{% endif %}
{% endfor %}
</ul>
<ul>
{% for author in site.authors %}
{% if author.captain == 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 %}
</ul>
<ul>
{% for author in site.authors %}
{% if author.captain != true and author.former_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>