pretty much working version
[koed-quiz.git] / koedquiz / templates / base.html
index c6ffd3c..cc33400 100644 (file)
@@ -4,10 +4,17 @@
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     <title>{% block "title" %}{% endblock %}</title>
+    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/style.css" />
 </head>
 
 <body>
-    {% block "body" %}{% endblock %}
+    <div id="header">
+    <a href='/'><h1>{% block "header" %}{% endblock %}</h1></a>
+    </div>
+
+    <div id="body">
+        {% block "body" %}{% endblock %}
+    </div>
 </body>
 
 </html>