aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/base.html
blob: 9ab9cace17f7dd22e99bcb2d2be5feb088157bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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" />
    <!-- Enough is enough! I have had it with these motherfucking snakes on this motherfucking plan! -->
</head>

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

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


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

<p class="copyright">SnakePlan is open-source under the Apache License. You can play with the snake, he won't bite.</p>
</html>