blob: fe9d39ea2924a9c1b27052ca64c6de1b81b6e5c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
<%block name="content_header">
<header>
<h1>${title|h}</h1>
%if description:
<p>${description}</p>
%endif
<div class="metadata">
${feeds_translations.feed_link(author, kind)}
${feeds_translations.translation_link(kind)}
</div>
</header>
</%block>
<%block name="extra_head">
${parent.extra_head()}
${feeds_translations.head(author, kind, rss_override=False)}
</%block>
|