Move to Django 1.5, some styling changes.
[cas.git] / src / cas / templates / base.html
1 <!DOCTYPE html>
2 <html>
3     <head>
4         <meta charset="utf-8" />
5         <title>{% block title %}Fundacja Nowoczesna Polska - Logowanie{% block subtitle %}{% endblock subtitle %}{% endblock title%}</title>
6         <link rel="stylesheet" href="{{ MEDIA_URL }}static/css/main.css"/>
7         {% block extrahead %}
8         {% endblock %}
9     </head>
10     <body>
11     <div id="header-wrap">
12     <header>
13
14         <a href="/">
15             <img title="Fundacja Nowoczesna Polska"
16                 alt="Fundacja Nowoczesna Polska"
17                 src="http://turniej.wolnelektury.pl/static/img/fnp_black.png"></a>
18
19     </header>
20     </div>
21
22     <div id="content-wrap">
23     <div id="content">
24         {% block content %} {% endblock %}
25     </div>
26     </div>
27
28 </html>