blob: 3c40ee1af92b5dc97ccecfeb4698656bc4dbf40c (
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 tranlations|length > 1 and generate_atom %}
{% for language in translations|sort %}
<link rel="alternate" type="application/atom+xml" title="Atom for the {{ author|e }} section ({{ language }})" href="{{ _link(kind + "_atom", author, language) }}">
{% endfor %}
{% elif generate_atom %}
<link rel="alternate" type="application/atom+xml" title="Atom for the {{ author|e }} section" href="{{ _link("author" + "_atom", author) }}">
{% endif %}
{% endblock %}
|