mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
21 lines
846 B
HTML
21 lines
846 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 title %}{{ cave.official_name|safe }}{% endblock %}
|
|
</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
|
|
<link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" />
|
|
<script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script>
|
|
<script src="{{ settings.JSLIB_URL }}jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
|
|
|
|
{% block extraheaders %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
{% include "menu.html" %}
|
|
</body>
|
|
</html>
|