aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base/templates/archiveindex.tmpl
blob: 8c58f13869514055e61e9268b661078958f7db5f (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(translations) > 1 and generate_atom:
        %for language in sorted(translations):
            <link rel="alternate" type="application/atom+xml" title="Atom for the ${archive_name} section (${language})" href="${_link("archive_atom", archive_name, language)}">
        %endfor
    %elif generate_atom:
        <link rel="alternate" type="application/atom+xml" title="Atom for the ${archive_name} archive" href="${_link("archive_atom", archive_name)}">
    %endif
</%block>