wcag fixes
[redakcja.git] / apps / catalogue / templates / catalogue / base.html
1 {% load compressed 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     {% compressed_css 'catalogue' %}
8     <title>{% block title %}{% trans "Platforma Redakcyjna" %} ::
9         {% block titleextra %}{% endblock %}{% endblock title %}</title>
10 </head>
11 <body>
12
13 <div id="tabs-nav">
14
15     <a href="{% url catalogue_document_list %}">
16         <img id="logo" src="{{ STATIC_URL }}img/wl-orange.png" alt="Platforma" />
17     </a>
18
19     <div id="tabs-nav-left">
20         {% main_tabs %}
21     </div>
22
23     <span id="login-box">
24         {% include "registration/head_login.html" %}
25     </span>
26
27     <div class='clr' ></div>
28 </div>
29
30 <div id="content">
31
32 {% block content %}
33 <div id="catalogue_layout_left_column">
34         {% block leftcolumn %}
35         {% endblock leftcolumn %}
36 </div>
37 <div id="catalogue_layout_right_column">
38         {% block rightcolumn %}
39         {% endblock rightcolumn %}
40 </div>
41 {% endblock content %}
42
43 </div>
44
45
46 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
47 {% compressed_js 'catalogue' %}
48 {% block extrabody %}
49 {% endblock %}
50 </body>
51 </html>