diff options
author | Martin Green <martin.speleo@gmail.com> | 2012-08-10 19:34:44 +0200 |
---|---|---|
committer | Martin Green <martin.speleo@gmail.com> | 2012-08-10 19:34:44 +0200 |
commit | 5ff163efaa0c5c6d154b1f47991d41ec4abfccef (patch) | |
tree | 2a040397dbfc2bc379220ede305d6867a19889a4 /templates/plainbase.html | |
parent | 52736ca1b34f7f004e68ae00a03fa876edf8199d (diff) | |
download | troggle-5ff163efaa0c5c6d154b1f47991d41ec4abfccef.tar.gz troggle-5ff163efaa0c5c6d154b1f47991d41ec4abfccef.tar.bz2 troggle-5ff163efaa0c5c6d154b1f47991d41ec4abfccef.zip |
Prospecting template
Diffstat (limited to 'templates/plainbase.html')
-rw-r--r-- | templates/plainbase.html | 12 |
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 %} |