document stages on import,
[redakcja.git] / apps / wiki / templates / wiki / base.html
1 {% load compressed i18n %}
2 {% load wiki %}
3 <!DOCTYPE html>
4 <html>
5 <head>
6     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
7     {% compressed_css 'listing' %}
8     <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css" />
9     <title>{% block title %}{% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
10 </head>
11 <body>
12
13 <div id="tabs-nav">
14
15     <img id="logo" src="{{ STATIC_URL }}img/wl-orange.png" />
16
17     <div id="tabs-nav-left">
18         {% main_tabs %}
19     </div>
20
21     <span id="login-box">
22         {% include "registration/head_login.html" %}
23     </span>
24
25     <div class='clr' ></div>
26 </div>
27
28 <div id="content">
29
30 <div id="wiki_layout_left_column">
31         {% block leftcolumn %}
32         {% endblock leftcolumn %}
33 </div>
34 <div id="wiki_layout_right_column">
35         {% block rightcolumn %}
36         {% endblock rightcolumn %}
37 </div>
38
39 </div>
40
41 {% compressed_js 'listing' %}
42 {% block extrabody %}
43 {% endblock %}
44 </body>
45 </html>