mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-16 02:17:12 +00:00
19 lines
641 B
HTML
19 lines
641 B
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 %}
|