=Make a common base for expoweb pages. Ignore any header information in expoweb except titles.

This commit is contained in:
Martin Green
2011-08-08 10:58:50 +01:00
parent c66ecc4d7f
commit e85c386375
5 changed files with 24 additions and 16 deletions

13
templates/expobase.html Normal file
View File

@@ -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 %}