aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base/templates/authorindex.tmpl
blob: 34cb20ba41b104619b25ca263cc1357c2d2bba19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>

<%block name="extra_head">
    ${parent.extra_head()}
    %if len(tranlations) > 1 and generate_atom:
        %for language in sorted(translations):
            <link rel="alternate" type="application/atom+xml" title="Atom for the ${author|h} section (${language})" href="${_link(kind + "_atom", author, language)}">
        %endfor
    %elif generate_atom:
        <link rel="alternate" type="application/atom+xml" title="Atom for the ${author|h} section" href="${_link("author" + "_atom", author)}">
    %endif
</%block>