troggle-unchained/templates/plainbase.html

13 lines
311 B
HTML
Raw Normal View History

2012-08-10 18:34:44 +01:00
{% 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 %}