aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-12-04 16:06:00 -0500
committerMike Crute <mcrute@gmail.com>2012-12-11 15:27:46 -0500
commitab626f31a0645d87560d242a20dd60e01b3d3b46 (patch)
treefbeac460e4b4182d0ee4178e5add369bbca76944 /templates/base.html
parentfc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2 (diff)
downloaddjango-precompiler-ab626f31a0645d87560d242a20dd60e01b3d3b46.tar.bz2
django-precompiler-ab626f31a0645d87560d242a20dd60e01b3d3b46.tar.xz
django-precompiler-ab626f31a0645d87560d242a20dd60e01b3d3b46.zip
Brief diversion into template inheritance
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..136c66d
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,13 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6 <title>{% block title %}CodeMash{% endblock %}</title>
7 <meta name="viewport" content="width=device-width">
8 </head>
9 <body>
10 {% block content %}
11 {% endblock %}
12 </body>
13</html>