summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThayer Williams <thayerw@gmail.com>2010-03-16 11:35:14 -0700
committerDan McGee <dan@archlinux.org>2010-05-17 14:49:44 -0500
commit7657c5978269a9b8c734a58ec197159e70678ebf (patch)
tree2ca26f7ff51ad50704b16fc312c57c39b030d001
parent1341dbdab80e67572ba75fc00f653e5852cc41bb (diff)
downloadarchweb-7657c5978269a9b8c734a58ec197159e70678ebf.tar.gz
archweb-7657c5978269a9b8c734a58ec197159e70678ebf.zip
Redesigned TU profiles, semantics, page title
Signed-off-by: Dan McGee <dan@archlinux.org>
-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 ce8cb145..658e64e6 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 %}
-