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