summaryrefslogtreecommitdiff
path: root/root/tags
diff options
context:
space:
mode:
Diffstat (limited to 'root/tags')
-rw-r--r--root/tags28
1 files changed, 18 insertions, 10 deletions
diff --git a/root/tags b/root/tags
index 2df62e5..244ae32 100644
--- a/root/tags
+++ b/root/tags
@@ -1,12 +1,20 @@
<html>
-<head>
-<title>tags</title>
-</head>
-<body>
-<ol>
-[% FOR tag IN tags %]
-<li><a href="[% href.to_tag(tag) %]">[% tag.name %]</a> ([% tag.how_many %])</li>
-[% END %]
-</ol>
-</body>
+ <head>
+ <title>Tags</title>
+ <link rel="stylesheet" href="[% href.stylesheet() %]" type="text/css" />
+ </head>
+ <body>
+ <div id="all-tags">
+ <ol>
+ [% FOR tag IN tags %]
+ <li>
+ <span class="tag name">
+ <a href="[% href.to_tag(tag) %]" target="_self">[% tag.name %]</a>
+ </span>
+ <span class="tag count">[% tag.how_many() %]</span>
+ </li>
+ [% END %]
+ </ol>
+ </div>
+ </body>
</html>