Media URLs with ids in them are now like /u/cwebber/m/id:4112/ rather than /u/cwebber...
[mediagoblin.git] / mediagoblin / templates / mediagoblin / base.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
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 <!doctype html>
19 <html>
20 <head>
21 <meta charset="utf-8">
22 <meta name="viewport" content="width=device-width, initial-scale=1.0">
23 <title>{% block title %}{{ app_config['html_title'] }}{% endblock %}</title>
24 <link rel="stylesheet" type="text/css"
25 href="{{ request.staticdirect('/css/extlib/reset.css') }}"/>
26 <link rel="stylesheet" type="text/css"
27 href="{{ request.staticdirect('/css/base.css') }}"/>
28 <link rel="shortcut icon"
29 href="{{ request.staticdirect('/images/goblin.ico') }}" />
30 <script type="text/javascript"
31 src="{{ request.staticdirect('/js/extlib/jquery.js') }}"></script>
32 <script type="text/javascript"
33 src="{{ request.staticdirect('/js/header_dropdown.js') }}"></script>
34
35 <!--[if lt IE 9]>
36 <script src="{{ request.staticdirect('/js/extlib/html5shiv.js') }}"></script>
37 <![endif]-->
38
39 {# For clarification, the difference between the extra_head.html template
40 # and the head template hook is that the former should be used by
41 # themes and the latter should be used by plugins.
42 # The reason is that only one thing can override extra_head.html...
43 # but multiple plugins can hook into the template hook.
44 #}
45 {% include "mediagoblin/extra_head.html" %}
46 {% template_hook("head") %}
47
48 {% block mediagoblin_head %}
49 {% endblock mediagoblin_head %}
50 </head>
51 <body>
52 {% include 'mediagoblin/bits/body-start.html' %}
53 {% block mediagoblin_body %}
54 {% block mediagoblin_header %}
55 <header>
56 {%- include "mediagoblin/bits/logo.html" -%}
57 {% block mediagoblin_header_title %}{% endblock %}
58 <div class="header_right">
59 {%- if request.user %}
60 {% if request.user and request.user.status == 'active' %}
61 <div class="button_action header_dropdown_down">&#9660;</div>
62 <div class="button_action header_dropdown_up">&#9650;</div>
63 {% elif request.user and request.user.status == "needs_email_verification" %}
64 {# the following link should only appear when verification is needed #}
65 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
66 user=request.user.username) }}"
67 class="button_action_highlight">
68 {% trans %}Verify your email!{% endtrans %}</a>
69 or <a href="{{ request.urlgen('mediagoblin.auth.logout') }}">{% trans %}log out{% endtrans %}</a>
70 {% endif %}
71 {%- else %}
72 <a href="{{ request.urlgen('mediagoblin.auth.login') }}?next={{
73 request.base_url|urlencode }}">
74 {%- trans %}Log in{% endtrans -%}
75 </a>
76 {%- endif %}
77 </div>
78 <div class="clear"></div>
79 {% if request.user and request.user.status == 'active' %}
80 <div class="header_dropdown">
81 <p>
82 <span class="dropdown_title">
83 {% trans user_url=request.urlgen('mediagoblin.user_pages.user_home',
84 user=request.user.username),
85 user_name=request.user.username -%}
86 <a href="{{ user_url }}">{{ user_name }}</a>'s account
87 {%- endtrans %}
88 </span>
89 &middot;
90 <a href="{{ request.urlgen('mediagoblin.edit.account') }}">{%- trans %}Change account settings{% endtrans -%}</a>
91 &middot;
92 <a href="{{ request.urlgen('mediagoblin.user_pages.processing_panel',
93 user=request.user.username) }}">
94 {%- trans %}Media processing panel{% endtrans -%}
95 </a>
96 &middot;
97 <a href="{{ request.urlgen('mediagoblin.auth.logout') }}">{% trans %}Log out{% endtrans %}</a>
98 </p>
99 <a class="button_action" href="{{ request.urlgen('mediagoblin.submit.start') }}">
100 {%- trans %}Add media{% endtrans -%}
101 </a>
102 <a class="button_action" href="{{ request.urlgen('mediagoblin.submit.collection') }}">
103 {%- trans %}Create new collection{% endtrans -%}
104 </a>
105 {% if request.user.is_admin %}
106 <p>
107 <span class="dropdown_title">Admin powers:</span>
108 <a href="{{ request.urlgen('mediagoblin.admin.panel') }}">
109 {%- trans %}Media processing panel{% endtrans -%}
110 </a>
111 </p>
112 {% endif %}
113 </div>
114 {% endif %}
115 </header>
116 {% endblock %}
117 <div class="container">
118 {% include 'mediagoblin/bits/above-content.html' %}
119 <div class="mediagoblin_content">
120 {% include "mediagoblin/utils/messages.html" %}
121 {% block mediagoblin_content %}
122 {% endblock mediagoblin_content %}
123 </div>
124 {%- block mediagoblin_footer %}
125 <footer>
126 {% trans -%}
127 Powered by <a href="http://mediagoblin.org/" title='Version {{ version }}'>MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project.
128 {%- endtrans %}
129 {% trans source_link=app_config['source_link'] -%}
130 Released under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPL</a>. <a href="{{ source_link }}">Source code</a> available.
131 {%- endtrans %}
132 </footer>
133 {%- endblock mediagoblin_footer %}
134 </div>
135 {%- endblock mediagoblin_body %}
136 {% include 'mediagoblin/bits/body-end.html' %}
137 </body>
138 </html>