aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base/templates/authors.tmpl
blob: 8503bd40a8ecff9441db80ad0d61ab5cba55e562 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## -*- coding: utf-8 -*-
<%inherit file="base.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>

<%block name="extra_head">
    ${feeds_translations.head(kind=kind, feeds=False)}
</%block>

<%block name="content">
<article class="authorindex">
    %if items:
        <h2>${messages("Authors")}</h2>
        <div class="metadata">
            ${feeds_translations.translation_link(kind)}
        </div>
        <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>