2024-10-04 23:25:24 +00:00
|
|
|
{% import "macros" as macros %}
|
2024-10-04 22:48:55 +00:00
|
|
|
{% extends "base" %}
|
|
|
|
{% block title %}members{% endblock title %}
|
|
|
|
{% block content %}
|
2024-10-04 23:25:24 +00:00
|
|
|
These are currently members of iwakura.rip, participating in some form.
|
2024-10-04 22:48:55 +00:00
|
|
|
<ul>
|
2024-10-04 23:25:24 +00:00
|
|
|
{{macros::user_display(username="hex", role=2)}}
|
|
|
|
{{macros::user_display(username="andre", role=1)}}
|
|
|
|
{{macros::user_display(username="grng", role=1)}}
|
2024-10-04 22:48:55 +00:00
|
|
|
</ul>
|
2024-10-04 23:25:24 +00:00
|
|
|
If communicating with any of our members, please encrypt your message against their pgp key, if they have one.
|
2024-10-04 22:48:55 +00:00
|
|
|
{% endblock content %}
|