summaryrefslogtreecommitdiffstats
path: root/templates/expobase.html
diff options
context:
space:
mode:
authorMartin Green <martin.speleo@gmail.com>2011-08-08 10:58:50 +0100
committerMartin Green <martin.speleo@gmail.com>2011-08-08 10:58:50 +0100
commite85c386375898845a87885d1bad7e2c38c8f23b5 (patch)
tree2fd770081ea7592062c7f4a4668a9f13bd6c3520 /templates/expobase.html
parentc66ecc4d7fd4436a34700f7c1d4a2d879e8aabc0 (diff)
downloadtroggle-e85c386375898845a87885d1bad7e2c38c8f23b5.tar.gz
troggle-e85c386375898845a87885d1bad7e2c38c8f23b5.tar.bz2
troggle-e85c386375898845a87885d1bad7e2c38c8f23b5.zip
=Make a common base for expoweb pages. Ignore any header information in expoweb except titles.
Diffstat (limited to 'templates/expobase.html')
-rw-r--r--templates/expobase.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/expobase.html b/templates/expobase.html
new file mode 100644
index 0000000..0ef74c1
--- /dev/null
+++ b/templates/expobase.html
@@ -0,0 +1,13 @@
+{% autoescape off %}
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>{% block title %}{% endblock %}</title>
+<link rel="stylesheet" type="text/css" href="css/main2.css" />
+{% block extrahead %}{% endblock %}
+</head>
+<body {% block bodyattrs %}{% endblock %}>
+{% block body %}{% endblock %}
+</body>
+</html>
+{% endautoescape %}