aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/projects/templates/base.html
blob: 2858e4cdcf20b4e172d46a0b0c668a62b714e287 (plain)
1
2
3
4
5
6
7
8
9
10
11
<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">	
        <!--[if lt IE 8]><link rel="stylesheet" href="static/css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
    </head>
    <body>
        {% block content %}{% endblock %}
    </body>
</html>