adds message queue
[mediagoblin.git] / mediagoblin / templates / mediagoblin / root.html
CommitLineData
87b44d61
WKG
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
20{% block mediagoblin_content %}
881b6e2c 21 <h1>{% trans %}Welcome to GNU MediaGoblin!{% endtrans %}</h1>
87b44d61
WKG
22
23 {% if request.user %}
b9f097a6
CAW
24 <p>
25 <a href="{{ request.urlgen('mediagoblin.submit.start') }}">Submit an item</a>
d220f87c 26 <a href="{{ request.urlgen('mediagoblin.edit.profile') }}">Edit profile</a>
b9f097a6 27 </p>
87b44d61 28 {% else %}
b9f097a6
CAW
29 <p>
30 If you have an account, you can
31 <a href="{{ request.urlgen('mediagoblin.auth.login') }}">Login</a>.
32 </p>
33 <p>
34 If you don't have an account, please
35 <a href="{{ request.urlgen('mediagoblin.auth.register') }}">Register</a>.
36 </p>
87b44d61 37 {% endif %}
4c1e752a
CAW
38
39 {# temporarily, an "image gallery" that isn't one really ;) #}
40
8bfc87e1 41 {% include "mediagoblin/utils/object_gallery.html" %}
ae85ed0f 42{% endblock %}