diff options
author | Thayer Williams <thayerw@gmail.com> | 2010-03-16 19:35:14 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-17 21:49:44 +0200 |
commit | 7657c5978269a9b8c734a58ec197159e70678ebf (patch) | |
tree | 2ca26f7ff51ad50704b16fc312c57c39b030d001 /templates/public/userlist.html | |
parent | 1341dbdab80e67572ba75fc00f653e5852cc41bb (diff) | |
download | archweb-7657c5978269a9b8c734a58ec197159e70678ebf.tar.gz archweb-7657c5978269a9b8c734a58ec197159e70678ebf.tar.xz |
Redesigned TU profiles, semantics, page title
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/userlist.html')
-rw-r--r-- | templates/public/userlist.html | 13 |
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 %} - |