2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-18 20:17:15 +00:00
Files
troggle/templates/cavebase.html

27 lines
828 B
HTML

<!DOCTYPE html>
<!-- cavebase.html - this text visible because this template has been included -->
<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 headtitle %}{{ cave.official_name|safe }}{% endblock %}
</title>
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
{% block extraheaders %}{% endblock %}
</head>
<body>
{% if year %}
{% firstof year as current_year %}
{% else %}
{% now "Y" as current_year %} <!-- the year now -->
{% endif %}
{% now "Y" as now_year %} <!-- the year now as used in header text -->
<br />
{% block toolbar %}{% include 'troggletoolbar.html' %}{% endblock %}
<p>
{% block content %}{% endblock %}
{% include "menu.html" %}
</body>
</html>