2021-04-15 12:55:13 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- cavebase.html - this text visible because this template has been included -->
|
2020-04-11 18:10:09 +01:00
|
|
|
<html lang="en">
|
2011-07-11 02:10:22 +01:00
|
|
|
<head>
|
2021-04-19 01:47:12 +01:00
|
|
|
<script>document.interestCohort = null;</script> <!-- Turn off Google FLoC -->
|
2020-07-27 23:39:55 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2011-07-11 02:10:22 +01:00
|
|
|
<title>{% block title %}{{ cave.official_name|safe }}{% endblock %}
|
|
|
|
</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
|
2015-06-21 15:06:44 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" />
|
2014-09-11 07:38:45 +01:00
|
|
|
<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>
|
2011-07-11 02:10:22 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$( "#tabs" ).tabs();
|
|
|
|
});
|
|
|
|
</script>
|
2012-01-07 19:05:25 +00:00
|
|
|
{% block extraheaders %}{% endblock %}
|
2011-07-11 02:10:22 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block content %}{% endblock %}
|
2011-08-08 09:51:47 +01:00
|
|
|
{% include "menu.html" %}
|
2011-07-11 02:10:22 +01:00
|
|
|
</body>
|
|
|
|
</html>
|