add favicon, reverse page titles
[redakcja.git] / apps / catalogue / templates / catalogue / base.html
1 {% load pipeline i18n %}
2 {% load catalogue %}
3 <!DOCTYPE html>
4 <html>
5 <head lang="{{ LANGUAGE_CODE }}">
6     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
7     <link rel="icon" href="{{ STATIC_URL }}img/pr-icon.png" type="image/png" />
8     {% stylesheet 'catalogue' %}
9     <title>{% block title %}{% block titleextra %}{% endblock %} ::
10         {% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
11     {% block add_css %}{% endblock %}
12 </head>
13 <body>
14 <!--#include file='/pozor.html'-->
15 <div id="tabs-nav">
16
17     <a href="{% url 'catalogue_document_list' %}">
18         <img id="logo" src="{{ STATIC_URL }}img/wl-orange.png" alt="Platforma" />
19     </a>
20
21     <div id="tabs-nav-left">
22         {% main_tabs %}
23     </div>
24
25     <span id="login-box">
26         {% include "registration/head_login.html" %}
27     </span>
28
29     <div class='clr' ></div>
30 </div>
31
32 <div id="content">
33
34 {% block content %}
35 <div id="catalogue_layout_left_column">
36         {% block leftcolumn %}
37         {% endblock leftcolumn %}
38 </div>
39 <div id="catalogue_layout_right_column">
40         {% block rightcolumn %}
41         {% endblock rightcolumn %}
42 </div>
43 {% endblock content %}
44
45 </div>
46
47
48 <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
49 {% javascript 'catalogue' %}
50 {% block add_js %}{% endblock %}
51 {% block extrabody %}
52 {% endblock %}
53 </body>
54 </html>