First commit!
[mediagoblin-libreplanet.git] / mediagoblin_libreplanet / templates / libreplanet / root.html
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 media_grid %}
22
23 {% set feed_url = request.urlgen('mediagoblin.listings.atom_feed') %}
24
25 {% block mediagoblin_head -%}
26 {% set feed_url = request.urlgen('mediagoblin.listings.atom_feed') -%}
27 <link rel="alternate" type="application/atom+xml" href="{{ feed_url }}">
28 {%- endblock mediagoblin_head %}
29
30 {% block mediagoblin_content %}
31 <h1>{% trans %}LibrePlanet{% endtrans %}</h1>
32 <img class="right_align" src="//static.fsf.org/nosvn/libreplanet/2015/graphical_assets/lp-logo-for-gmg.svg" />
33 <p>
34 {% trans %}The videos on this site were recorded during&nbsp;
35 <a href="http://libreplanet.org">LibrePlanet</a>, an annual
36 conference for free software enthusiasts held by the Free
37 Software Foundation in Cambridge, MA. This site is running
38 <a href="http://mediagoblin.org">MediaGoblin</a>, a great piece
39 of free media hosting software.{% endtrans %}
40 </p>
41 <div class="clear"></div>
42
43 <h2>{% trans %}Videos{% endtrans %}</h2>
44 {{ media_grid(request, videos) }}
45 <div class="clear"></div>
46 <p>
47 <a href="/videos">View all LibrePlanet videos</a>
48 </p>
49
50 <h2>{% trans %}Photos{% endtrans %}</h2>
51 {{ media_grid(request, images) }}
52 <div class="clear"></div>
53 <p>
54 <a href="/photos">View all LibrePlanet photos</a>
55 </p>
56
57 {#- Need to set feed_url within this block so template can use it. -#}
58 {%- set feed_url = feed_url -%}
59 {%- include "mediagoblin/utils/feed_link.html" -%}
60 {% endblock %}