Add RSS feeds to category pages; bug 568057

This commit is contained in:
Wil Clouser 2010-05-26 10:07:02 -07:00
Родитель 5e23d50e26
Коммит 2b8b8f381b
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -15,5 +15,14 @@
color: inherit;
}
</style>
{# TODO; when remora goes away, fix this blob #}
{% with sort = {'created': 'newest', 'downloads': 'popular', 'rating': 'averagerating'}[sorting] %}
{% if not sort %}
{% set sort = 'updated' %}
{% endif %}
<link rel="alternate" type="application/rss+xml" title="RSS"
href="/{{ LANG }}/{{ APP.short }}/browse/type:{{ category.application_id }}/cat:{{ category.id }}/format:rss?sort={{ sort }}" />
{% endwith %}
{% endif %}
{% endblock %}