aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base/templates/authors.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'nikola/data/themes/base/templates/authors.tmpl')
-rw-r--r--nikola/data/themes/base/templates/authors.tmpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/nikola/data/themes/base/templates/authors.tmpl b/nikola/data/themes/base/templates/authors.tmpl
new file mode 100644
index 0000000..141c560
--- /dev/null
+++ b/nikola/data/themes/base/templates/authors.tmpl
@@ -0,0 +1,17 @@
+## -*- coding: utf-8 -*-
+<%inherit file="base.tmpl"/>
+
+<%block name="content">
+<article class="authorindex">
+ %if items:
+ <h2>${messages("Authors")}</h2>
+ <ul class="postlist">
+ % for text, link in items:
+ % if text not in hidden_authors:
+ <li><a class="reference listtitle" href="${link}">${text|h}</a></li>
+ % endif
+ % endfor
+ </ul>
+ %endif
+</article>
+</%block>