Skip to content

Commit f1253ba

Browse files
authored
Merge pull request #104 from ubcctf/update-members
Update members page
2 parents 296dc66 + d25e512 commit f1253ba

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

_authors/Vie.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ position: Web, Rev
55
website: https://jamvie.net/
66
website_title: jamvie.net
77
layout: author
8-
captain: true
8+
former_captain: true
99
---
1010
Everything I learned about JS I learned against my will

_authors/vEvergarden.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
short_name: vEvergarden
33
name: Kevin Liu
4-
position: Crypto
5-
website: https://kevinl10.github.io/
6-
website_title: kevinl10.github.io
4+
position: Crypto, Misc
5+
website: https://kevinliu.me
6+
website_title: kevinliu.me
77
layout: author
8+
captain: true
89
---
9-
Enjoys guessing crypto papers. Also trying to learn web.
10+
Cryptography? I only know of crypto(currency).

members.html

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44
---
55
<h1>Members</h1>
66

7+
<ul>
8+
{% for author in site.authors %}
9+
{% if author.former_captain == true %}
10+
<li>
11+
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
12+
<h3>Former Leader</h3>
13+
<h3>{{ author.position }}</h3>
14+
<p>{{ author.content | markdownify }}</p>
15+
</li>
16+
{% endif %}
17+
{% endfor %}
18+
</ul>
19+
720
<ul>
821
{% for author in site.authors %}
922
{% if author.captain == true %}

0 commit comments

Comments
 (0)