aboutsummaryrefslogtreecommitdiff
path: root/codemash/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'codemash/templates/base.html')
-rw-r--r--codemash/templates/base.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/codemash/templates/base.html b/codemash/templates/base.html
new file mode 100644
index 0000000..bb85256
--- /dev/null
+++ b/codemash/templates/base.html
@@ -0,0 +1,11 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Hello Codemash: {% block title %}TODO: add custom content using child templates{% endblock %}</title>
5 </head>
6 <body>
7 <div id="header">...header...</div>
8 {% block main %}TODO: add custom content using child templates{% endblock %}
9 <div id="footer">...footer...</div>
10 </body>
11</html>