lissarchive-website/themes/custom/templates/sectionindex.tmpl

21 lines
661 B
Cheetah
Raw Normal View History

2017-05-04 22:53:52 +00:00
## -*- coding: utf-8 -*-
<%inherit file="index.tmpl"/>
<%block name="extra_head">
${parent.extra_head()}
% if generate_atom:
<link rel="alternate" type="application/atom+xml" title="Atom for the ${posts[0].section_name()|h} section" href="${_link('section_index_atom', posts[0].section_slug())}">
% endif
</%block>
<%block name="content">
<div class="sectionindex">
<header>
% if generate_atom:
<p class="feedlink"><a href="${_link('section_index_atom', posts[0].section_slug())}" type="application/atom+xml">${messages('Updates')}</a></p>
% endif
</header>
${parent.content()}
</div>
</%block>