Base template

This commit is contained in:
Eryn Wells 2012-08-17 18:11:49 -07:00
parent ce9974fc45
commit cdce435ee2

16
templates/base.html Normal file
View file

@ -0,0 +1,16 @@
<!doctype html>
<!-- vim: set ft=djangohtml -->
<html>
<head>
<title>{{ title }}</title>
<!-- css -->
{% block extra_css %}{% endblock %}
<!-- js -->
{% block head_js %}{% endblock %}
</head>
<body>
{% block body_js %}{% endblock %}
</body>
</html>