2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/templates/expobase.html

16 lines
532 B
HTML
Raw Normal View History

2022-03-18 10:21:25 +00:00
<!-- expobase.html - this text visible because this template has been included -->
{% autoescape off %}
<html>
<head>
2021-04-19 01:47:12 +01:00
<script>document.interestCohort = null;</script> <!-- Turn off Google FLoC -->
2021-03-26 23:40:34 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{% block title %}{% endblock %}</title>
2011-08-08 12:40:47 +01:00
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
{% block extrahead %}{% endblock %}
</head>
<body {% block bodyattrs %}{% endblock %}>
{% block body %}{% endblock %}
</body>
</html>
{% endautoescape %}