Base template
This commit is contained in:
parent
ce9974fc45
commit
cdce435ee2
1 changed files with 16 additions and 0 deletions
16
templates/base.html
Normal file
16
templates/base.html
Normal 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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue