summaryrefslogtreecommitdiffstats
path: root/templates/plainbase.html
blob: 64b1d20efb73e1690e87eb08f86abe6fd143b3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}