aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/base.html
blob: 4506d5f69d2fc7c292b6baa3b37f983c237d95f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
    <title>{% block title %}{% endblock %} - SnakePlan</title>
    <link rel="stylesheet" href="{{MEDIA_URL}}/css/screen.css" type="text/css" media="screen, projection" />
</head>

<body>
    <h1>{% block pagetitle %}SnakePlan{% endblock %}</h1>

    <ul class="action-bar">
    {% block actionbar %}{% endblock %}
    </ul >


    {% block content %}{% endblock %}
</body>
</html>