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 | 6d5babd3319fec50f404bf7ad044962bd1f192e9 (patch) | |
tree | 2155b3d20843988f247a7674f3ce2cd72aea196e /templates/plainbase.html | |
parent | 79b7d326644a931c431c2b51dfb783ff15af31de (diff) | |
download | troggle-6d5babd3319fec50f404bf7ad044962bd1f192e9.tar.gz troggle-6d5babd3319fec50f404bf7ad044962bd1f192e9.tar.bz2 troggle-6d5babd3319fec50f404bf7ad044962bd1f192e9.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 %} |