mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<!-- expowebbase.html - this text visible because this template has been included -->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>{% block title %}{% endblock %}
|
|
</title>
|
|
<link rel="stylesheet" type="text/css" href="../css/main2.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mainmenu">
|
|
<ul>
|
|
<li><a href="/index.htm">Expo website home</a></li>
|
|
<li><a href="/intro.html">Introduction</a></li>
|
|
<li><a href="/infodx.htm">Main index</a></li>
|
|
<li><a href="/caves">Cave index</a></li>
|
|
{% if cavepage %}
|
|
<ul>
|
|
<li><a href="{% url "survexcaveslist" %}">All Survex</a></li>
|
|
<li><a href="{% url "scanswallets" %}">Scans</a></li>
|
|
<li><a href="{% url "dwgdata" %}">Drawings</a></li>
|
|
<li><a href="{% url "survexcavessingle" "caves-1623/290/290.svx" %}">290</a></li>
|
|
<li><a href="{% url "survexcavessingle" "caves-1623/291/291.svx" %}">291</a></li>
|
|
<li><a href="{% url "survexcavessingle" "caves-1626/359/359.svx" %}">359</a></li>
|
|
<li><a href="{% url "survexcavessingle" "caves-1623/258/258.svx" %}">258</a></li>
|
|
<li><a href="{% url "survexcavessingle" "caves-1623/264/264.svx" %}">264</a></li>
|
|
<li><a href="{% url "expedition" 2018 %}">Expo2018</a></li>
|
|
<li><a href="{% url "expedition" 2019 %}">Expo2019</a></li>
|
|
<li><a href="/admin">Django admin</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
<li><a href="/handbook/index.htm">Expedition handbook</a></li>
|
|
<li><a href="/pubs.htm">Published reports</a></li>
|
|
<li><a href="/areas.htm">Area description</a></li>
|
|
<li><a href="/">CUCC website</a></li>
|
|
</ul>
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|
|
|