moved forgot pw views to basic_auth plugin
[mediagoblin.git] / mediagoblin / templates / mediagoblin / root.html
CommitLineData
87b44d61
WKG
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
87b44d61
WKG
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
251db013
SS
22{% set feed_url = request.urlgen('mediagoblin.listings.atom_feed') %}
23
24{% block mediagoblin_head -%}
25 {% set feed_url = request.urlgen('mediagoblin.listings.atom_feed') -%}
26 <link rel="alternate" type="application/atom+xml" href="{{ feed_url }}">
27{%- endblock mediagoblin_head %}
28
87b44d61 29{% block mediagoblin_content %}
ae9eca1b
CAW
30 {% include "mediagoblin/bits/frontpage_welcome.html" %}
31
3d95afeb 32 <h2>{% trans %}Most recent media{% endtrans %}</h2>
38bf03c6 33 {{ object_gallery(request, media_entries, pagination) }}
251db013
SS
34
35 {#- Need to set feed_url within this block so template can use it. -#}
36 {%- set feed_url = feed_url -%}
37 {%- include "mediagoblin/utils/feed_link.html" -%}
ae85ed0f 38{% endblock %}