Converting object_gallery() from a block to a macro and updating usages of it
[mediagoblin.git] / mediagoblin / templates / mediagoblin / listings / tag.html
CommitLineData
71454fd3
CAW
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
38bf03c6
CAW
20{% from "mediagoblin/utils/object_gallery.html" import object_gallery %}
21
1a897068
CAW
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
71454fd3
CAW
29{% block mediagoblin_content -%}
30 <h1>
8f4c9b81 31 {% trans %}Media tagged with:{% endtrans %} {{ tag_name }}
71454fd3
CAW
32 </h1>
33
34 <div class="container_16 media_gallery">
38bf03c6 35 {{ object_gallery(request, media_entries, pagination) }}
71454fd3 36 </div>
1a897068
CAW
37
38 <div class="grid_16">
39 <a href="{{ request.urlgen(
40 'mediagoblin.listings.tag_atom_feed',
58b79b15
CAW
41 tag=tag_slug) }}">
42 {%- trans %}atom feed{% endtrans -%}
43 </a>
1a897068 44 </div>
71454fd3 45{% endblock %}