2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-05-13 05:26:17 +01:00
Files
troggle/templates/base.html
T

49 lines
1.1 KiB
HTML

<!DOCTYPE html>
<!-- base.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" />
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/trog3.css" title="troggle-style"/>
<title>{% block title %}Troggle{% endblock %}</title>
{% block head %}{% 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 -->
{% include 'headpic.html' %}
{% block toolbar %}{% include 'troggletoolbar.html' %}{% endblock %}
<div id="nav">
{% block nav %}
<!-- Not used any more? -->
{% endblock %}
</div>
<div id="content" >
{% block contentheader %}
{% endblock %}
<div id="related">
{% block related %}
{% endblock %}
</div>
{% block content %}
REPLACE : The content
{% endblock %}
</div>
<div class="footer">
</div>
</body>
</html>