aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'snakeplan/templates/base.html')
-rw-r--r--snakeplan/templates/base.html25
1 files changed, 15 insertions, 10 deletions
diff --git a/snakeplan/templates/base.html b/snakeplan/templates/base.html
index d33c21f..4506d5f 100644
--- a/snakeplan/templates/base.html
+++ b/snakeplan/templates/base.html
@@ -1,13 +1,18 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html> 2<html>
3 <head> 3<head>
4 <title>{% block title %}SnakePlan{% endblock %}</title> 4 <title>{% block title %}{% endblock %} - SnakePlan</title>
5 <link rel="stylesheet" href="/static/css/blueprint/screen.css" type="text/css" media="screen, projection"> 5 <link rel="stylesheet" href="{{MEDIA_URL}}/css/screen.css" type="text/css" media="screen, projection" />
6 <link rel="stylesheet" href="/static/css/blueprint/print.css" type="text/css" media="print"> 6</head>
7 </head> 7
8 <body> 8<body>
9 <div class="container"> 9 <h1>{% block pagetitle %}SnakePlan{% endblock %}</h1>
10 {% block content %}{% endblock %} 10
11 </div> 11 <ul class="action-bar">
12 </body> 12 {% block actionbar %}{% endblock %}
13 </ul >
14
15
16 {% block content %}{% endblock %}
17</body>
13</html> 18</html>