added donation link to base template
[mediagoblin-libreplanet.git] / mediagoblin_libreplanet / templates / libreplanet / listing.html
CommitLineData
724f8731
DT
1{#
2# MediaGoblin for LibrePlanet
3# Copyright (C) 2011, 2012 MediaGoblin contributors
4# Copyright (C) 2015 David Thompson <davet@gnu.org>
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU Affero General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU Affero General Public License for more details.
15#
16# You should have received a copy of the GNU Affero General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18#}
19{% extends "mediagoblin/base.html" %}
20
21{% from "mediagoblin/utils/object_gallery.html" import object_gallery %}
22
23{% block title %}
24 {{ title }} &mdash; {{ super() }}
25{% endblock %}
26
27{% block mediagoblin_content -%}
28 <h1>{{ title }}</h1>
29
30 {{ object_gallery(request, media_entries, pagination) }}
31
32{% endblock %}