Feed link, as an includable template!
[mediagoblin.git] / mediagoblin / templates / mediagoblin / listings / tag.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011 Free Software Foundation, Inc
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU Affero General Public License for more details.
14 #
15 # You should have received a copy of the GNU Affero General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #}
18 {% extends "mediagoblin/base.html" %}
19
20 {% from "mediagoblin/utils/object_gallery.html" import object_gallery %}
21
22 {% block mediagoblin_head %}
23 <link rel="alternate" type="application/atom+xml"
24 href="{{ request.urlgen(
25 'mediagoblin.listings.tag_atom_feed',
26 tag=tag_slug) }}">
27 {% endblock mediagoblin_head %}
28
29 {% block mediagoblin_content -%}
30 <h1>
31 {% trans %}Media tagged with:{% endtrans %} {{ tag_name }}
32 </h1>
33
34 <div class="container_16 media_gallery">
35 {{ object_gallery(request, media_entries, pagination) }}
36 </div>
37
38 <div class="grid_16">
39 {% set feed_url = request.urlgen(
40 'mediagoblin.listings.tag_atom_feed',
41 tag=tag_slug) %}
42 {% include "mediagoblin/utils/feed_link.html" %}
43 </div>
44 {% endblock %}