blob: 8b9286e37f07e95822ba5c70ca077c42c7b17eb6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{# -*- coding: utf-8 -*- #}
{% extends 'index.tmpl' %}
{% block extra_head %}
{{ super() }}
{% if translations|length > 1 and generate_atom %}
{% for language in translations|sort %}
<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 %}
{% endblock %}
|