2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/templates/cavebase.html

23 lines
754 B
HTML
Raw Normal View History

<html lang="en">
2011-07-11 02:10:22 +01:00
<head>
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" />
<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>
2011-07-11 02:10:22 +01:00
<script type="text/javascript">
$(function() {
$( "#tabs" ).tabs();
});
</script>
{% block extraheaders %}{% endblock %}
2011-07-11 02:10:22 +01:00
</head>
<body>
{% block content %}{% endblock %}
{% include "menu.html" %}
2011-07-11 02:10:22 +01:00
</body>
</html>