c00dd21866ea413331224d91adf0f373bb9e121f
[redakcja.git] / platforma / templates / base.html
1 {% load django_version_tags %}
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:p="http://platforma.wolnelektury.pl/">
5     <head>
6         <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
7         <title>{% block title %}Platforma Redakcyjna - {% version %}{% block subtitle %}{% endblock subtitle %}{% endblock title%}</title>
8         <link rel="stylesheet" href="{{ STATIC_URL }}css/master.css" type="text/css" />
9         <script src="{{ STATIC_URL }}js/lib/jquery.js" type="text/javascript" charset="utf-8"></script>
10         <script src="{{ STATIC_URL }}js/lib/jquery.logging.js" type="text/javascript" charset="utf-8"></script>
11         {% block extrahead %}
12         {% endblock %}
13     </head>
14     <body id="{% block bodyid %}base{% endblock %}">
15         <div id="body-wrap">
16         <div id="header">
17                 <span id="breadcrumbs">{% block breadcrumbs %}<a href="{% url file_list %}">Platforma Redakcyjna</a>{% endblock breadcrumbs %}</span>
18                 <span id="header-right-toolbar">
19                         {% block header-toolbar %}{% endblock %}
20                         <span id="login_info">{% include "registration/head_login.html" %}</span>
21                 </span>
22         <div id="message-box">{% block message-box %} {% endblock %}</div>
23         </div>
24     <div id="content">{% block maincontent %} {% endblock %}</div>
25
26     {% block extrabody %}{% endblock %}
27         </div>
28     </body>
29 </html>