summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/public/userlist.html13
1 files changed, 8 insertions, 5 deletions
diff --git a/templates/public/userlist.html b/templates/public/userlist.html
index ce8cb14..658e64e 100644
--- a/templates/public/userlist.html
+++ b/templates/public/userlist.html
@@ -1,13 +1,16 @@
{% extends "base.html" %}
+{% block title %}Arch Linux - {{ user_type }}{% endblock %}
{% block content %}
-<div class="box">
- <h2 class="title">Arch Linux {{user_type}}</h2>
- <p>{{description}}</p>
+<div id="dev-tu-profiles" class="box">
+
+ <h2>Arch Linux {{user_type}}</h2>
+
+ <p>{{description}}</p>
+
{% with users as dev_list %}
{% include 'public/developer_list.html' %}
{% endwith %}
+
</div>
-<br /><br />
{% endblock %}
-