add favicon, reverse page titles
[redakcja.git] / redakcja / templates / base.html
1 <!DOCTYPE html >
2 {% load i18n %}
3 <html>
4     <head lang="{{ LANGUAGE_CODE }}">
5         <meta charset="utf-8" />
6         <link rel="icon" href="{{ STATIC_URL }}img/pr-icon.png" type="image/png" />
7         <title>{% block title %}{% block titleextra %}{% endblock titleextra %} ::
8             {% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
9         {% block extrahead %}
10         {% endblock %}
11     </head>
12     <body id="{% block bodyid %}base{% endblock %}">
13
14     <div id="loading-overlay">
15         <div id="loading-message">
16                 <img src="{{STATIC_URL}}img/spinner.gif" alt="Loading" />
17                 <p>{% trans "Loading" %}</p>
18         </div>
19         </div>
20
21         <div id="body-wrap">
22                 <!-- version: {{ APP_VERSION }} -->
23         <div id="content">{% block maincontent %} {% endblock %}</div>
24         </div>
25     <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
26     {% block extrabody %}{% endblock %}
27     </body>
28 </html>