summaryrefslogtreecommitdiffstats
path: root/templates/plainbase.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/plainbase.html')
-rw-r--r--templates/plainbase.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/plainbase.html b/templates/plainbase.html
new file mode 100644
index 0000000..64b1d20
--- /dev/null
+++ b/templates/plainbase.html
@@ -0,0 +1,12 @@
+{% autoescape off %}
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>{% block title %}{% endblock %}</title>
+{% block extrahead %}{% endblock %}
+</head>
+<body {% block bodyattrs %}{% endblock %}>
+{% block body %}{% endblock %}
+</body>
+</html>
+{% endautoescape %}