blob: cbefeb89f1c5bb1edc80f9ad489c6d58f1f8ba2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<!-- expobase.html - this text visible because this template has been included -->
{% autoescape off %}
<html lang="en">
<head>
<script>document.interestCohort = null;</script> <!-- Turn off Google FLoC -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
{% block extrahead %}{% endblock %}
</head>
{% block toolbar %}
{% if troggle %}{% include 'troggletoolbar.html' %}{% endif %}
{% endblock %}
<body {% block bodyattrs %}{% endblock %}>
{% block body %}{% endblock %}
</body>
</html>
{% endautoescape %}
|