Bootstrap in base template

This commit is contained in:
Eryn Wells 2012-08-17 19:26:55 -07:00
parent baebb2de51
commit 83b799d8b9

View file

@ -4,12 +4,15 @@
<head> <head>
<title>{{ title }}</title> <title>{{ title }}</title>
<!-- css --> <!-- css -->
{% block extra_css %}{% endblock %} <link rel="stylesheet" type="text/css" href="/static/bootstrap/css/bootstrap.css" />
{% block head_css %}{% endblock %}
<!-- js --> <!-- js -->
{% block head_js %}{% endblock %} {% block head_js %}{% endblock %}
</head> </head>
<body> <body>
<div class="container-fluid">
{% block body %}{% endblock %}
</div>
{% block body_js %}{% endblock %} {% block body_js %}{% endblock %}
</body> </body>
</html> </html>