It's 2012 all up in here
[mediagoblin.git] / mediagoblin / templates / mediagoblin / listings / tag.html
CommitLineData
71454fd3
CAW
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
71454fd3
CAW
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
4671fda3
CAW
29{% block title %}
30 {% trans %}Media tagged with: {{ tag_name }}{% endtrans %} &mdash; {{ super() }}
31{% endblock %}
32
71454fd3
CAW
33{% block mediagoblin_content -%}
34 <h1>
4671fda3 35 {% trans %}Media tagged with: {{ tag_name }}{% endtrans %}
71454fd3
CAW
36 </h1>
37
3ea6a305 38 {{ object_gallery(request, media_entries, pagination) }}
1a897068 39
3ea6a305
JS
40 {% set feed_url = request.urlgen('mediagoblin.listings.tag_atom_feed',
41 tag=tag_slug) %}
42 {% include "mediagoblin/utils/feed_link.html" %}
71454fd3 43{% endblock %}