summaryrefslogtreecommitdiff
path: root/templates/document-listing.tt
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2009-08-19 15:33:59 +0200
committerdakkar <dakkar@thenautilus.net>2009-08-19 15:33:59 +0200
commit57c65d6feb96239cc78626ed206de27e5c1f949c (patch)
treebcbe321e2b9b196d26fa7dfef12762627cfee119 /templates/document-listing.tt
parentgeneral tags page (diff)
downloadthenautilus-57c65d6feb96239cc78626ed206de27e5c1f949c.tar.gz
thenautilus-57c65d6feb96239cc78626ed206de27e5c1f949c.tar.bz2
thenautilus-57c65d6feb96239cc78626ed206de27e5c1f949c.zip
classes in tags lists
also added code to reST.xsl to actually propagate the classes
Diffstat (limited to 'templates/document-listing.tt')
-rw-r--r--templates/document-listing.tt15
1 files changed, 12 insertions, 3 deletions
diff --git a/templates/document-listing.tt b/templates/document-listing.tt
index 729e08c..9cf4775 100644
--- a/templates/document-listing.tt
+++ b/templates/document-listing.tt
@@ -1,3 +1,12 @@
-[% FOR doc IN tagged.$path %]
-[% IF isLang(language,doc) %]* `<[% dstUriFor(doc) %]>`_[% END %]
-[% END %]
+[% docs = [];
+ FOR doc IN tagged.$path;
+ IF isLang(language,doc);
+ docs.push(doc);
+ END;
+ END -%]
+[% IF docs.size > 0 %]
+.. class:: doc-tag-list
+
+[% FOR doc IN docs %]
+* `<[% dstUriFor(doc) %]>`_
+[% END; END %]