diff options
Diffstat (limited to 'tmpl/userindex.html')
-rw-r--r-- | tmpl/userindex.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tmpl/userindex.html b/tmpl/userindex.html new file mode 100644 index 0000000..23c28aa --- /dev/null +++ b/tmpl/userindex.html @@ -0,0 +1,14 @@ +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>[% config.sitename %]: u</title> + </head> + <body> + <h1>Users</h1> + <ul> + [% FOREACH user IN users %] + <li><a href="[% user.value.uid.0 %].html">[% user.value.cn.0 %] ([% user.value.uid.0 %])</a></li> + [% END %] + </ul> + </body> +</html> |