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

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

<%block name="content_header">
    <header>
        <h1>${title|h}</h1>
        ${archive_nav.archive_navigation()}
        <div class="metadata">
            ${feeds_translations.feed_link(archive, kind)}
            ${feeds_translations.translation_link(kind)}
        </div>
    </header>
</%block>