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