Mark two strings for translation
[mediagoblin.git] / mediagoblin / templates / mediagoblin / base.html
CommitLineData
76c9ea6b
WKG
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
12a100e4 3# Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
76c9ea6b
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/>.
9a5b2da5
CAW
17-#}
18<!doctype html>
a0598d5c
CAW
19<html>
20 <head>
5fa35884 21 <meta charset="utf-8">
8f4c9b81 22 <title>{% block title %}{% trans %}GNU MediaGoblin{% endtrans %}{% endblock title %}</title>
1344821d 23 <link rel="stylesheet" type="text/css"
2faec367 24 href="{{ request.staticdirect('/css/extlib/reset.css') }}"/>
1344821d 25 <link rel="stylesheet" type="text/css"
2faec367 26 href="{{ request.staticdirect('/css/extlib/text.css') }}"/>
f7bcfaff 27 <link rel="stylesheet" type="text/css"
2faec367 28 href="{{ request.staticdirect('/css/extlib/960_16_col.css') }}"/>
8ac897c3
CAW
29 <link rel="stylesheet" type="text/css"
30 href="{{ request.staticdirect('/css/base.css') }}"/>
7a8ad818
CAW
31 <link rel="shortcut icon"
32 href="{{ request.staticdirect('/images/goblin.ico') }}" />
00c39256
BK
33 {% block mediagoblin_head %}
34 {% endblock mediagoblin_head %}
a0598d5c
CAW
35 </head>
36
37 <body>
a0598d5c 38 {% block mediagoblin_body %}
9f661642 39 <div class="mediagoblin_body">
a0598d5c 40 {% block mediagoblin_header %}
06a5f21e
JS
41 <div class="container_16">
42 <div class="grid_16 mediagoblin_header">
43 {% block mediagoblin_logo %}
132aa9d9
CAW
44 <a class="mediagoblin_logo"
45 href="{{ request.urlgen('index') }}"
46 ><img src="{{ request.staticdirect('/images/logo.png') }}"
47 alt="{% trans %}MediaGoblin logo{% endtrans %}" /></a>
06a5f21e 48 {% endblock %}
dc9cbb38 49 {% if request.user and request.user['status'] == 'active' %}
f22339d2
CAW
50 <a class="header_submit"
51 href="{{ request.urlgen('mediagoblin.submit.start') }}">
8f4c9b81 52 {% trans %}Submit media{% endtrans %}
f22339d2 53 </a>
06a5f21e
JS
54 {% endif %}
55 {% block mediagoblin_header_title %}{% endblock %}
56 <div class="mediagoblin_header_right">
681e1371 57 {% if request.user %}
4476adcd
CAW
58 {# the following link should only appear when verification is needed #}
59 {% if request.user.status == "needs_email_verification" %}
60 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
61 user=request.user['username']) }}"
391861ac 62 class="header_submit">
8f4c9b81 63 {% trans %}verify your email!{% endtrans %}</a>
4476adcd
CAW
64 {% endif %}
65
7b6836a3
CAW
66 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
67 user= request.user['username']) }}">
68 {{ request.user['username'] }}</a>
69
efd0a42c 70 (<a href="{{ request.urlgen('mediagoblin.auth.logout') }}">{% trans %}log out{% endtrans %}</a>)
06a5f21e 71 {% else %}
97a55309 72 <a href="{{ request.urlgen('mediagoblin.auth.login') }}">
924e112b 73 {% trans %}Log in{% endtrans %}</a>
681e1371 74 {% endif %}
f7bcfaff
JS
75 </div>
76 </div>
38aa4a40 77 </div>
a0598d5c 78 {% endblock %}
18d9287a
JS
79 <div class="container_16 mediagoblin_content">
80 <div class="grid_16">
741d5a37 81 {% include "mediagoblin/utils/messages.html" %}
f7bcfaff
JS
82 {% block mediagoblin_content %}
83 {% endblock mediagoblin_content %}
84 </div>
a0598d5c 85 </div>
9f661642 86 {% block mediagoblin_footer %}
06a5f21e
JS
87 <div class="container_16">
88 <div class="grid_16 mediagoblin_footer">
58b79b15 89 {% trans -%}
9341f8b8 90 Powered by <a href="http://mediagoblin.org">MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project
58b79b15 91 {%- endtrans %}
9f661642
JS
92 </div>
93 </div>
9f661642 94 {% endblock %}
20aaec5f 95 {% endblock mediagoblin_body %}
9f661642 96 </div>
a0598d5c
CAW
97 </body>
98</html>