summaryrefslogtreecommitdiff
path: root/templates/public/developers.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/public/developers.html')
-rw-r--r--templates/public/developers.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/public/developers.html b/templates/public/developers.html
new file mode 100644
index 00000000..f2905876
--- /dev/null
+++ b/templates/public/developers.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Arch Linux Core Developers</h2>
+ {% with developers as dev_list %}
+ {% include 'public/developer_list.html' %}
+ {% endwith %}
+ <h2 class="title">Arch Linux Trusted Users</h2>
+ {% with tus as dev_list %}
+ {% include 'public/developer_list.html' %}
+ {% endwith %}
+</div>
+<br /><br />
+{% endblock %}
+