aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/base.html
blob: d33c21fd3440d5625b16e8d03ccb475c639c6ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
    <head>
        <title>{% block title %}SnakePlan{% endblock %}</title>
        <link rel="stylesheet" href="/static/css/blueprint/screen.css" type="text/css" media="screen, projection">
        <link rel="stylesheet" href="/static/css/blueprint/print.css" type="text/css" media="print">	
    </head>
    <body>
        <div class="container">
        {% block content %}{% endblock %}
        </div>
    </body>
</html>