summaryrefslogtreecommitdiff
path: root/templates/document-listing.tt
blob: c42f961e8735cff43ccd041177cc6f77170b0413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[% docs = [];
   FOR doc IN tagged.$path;
   IF isLang(language,doc);
   uri=dstUriFor(doc);
   dates=datesFor(language,'',uri);
   docs.push({'uri'=>uri,'creation'=>dates.creation});
   END;
   END -%]
[% IF docs.size > 0 %]
.. class:: doc-tag-list
 
[% FOR doc IN docs.sortf('creation') %]
* `<[% doc.uri %]>`_
[% END; END %]