aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/bootstrap3-jinja/templates/authors.tmpl
blob: d65c72739ae5fe88984ad4a0f11706138eb5c23e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}