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

18 lines
897 B
HTML
Raw Normal View History

{% if not homepage %}
<ul id="links">
<li><a href="/index.htm">Home</a></li>
<li><a href="/infodx.htm">Main Index</a></li>
<li><a href="/handbook/index.htm">Handbook</a></li>
2021-03-31 16:14:36 +01:00
<li><a href="/handbook/computing/onlinesystems.html">Online systems</a></li>
<li><a href="/pubs.htm">Reports</a></li>
2020-04-03 01:11:30 +01:00
<li><a href="/areas.htm">Areas</a></li>
2020-06-05 23:08:53 +01:00
<li><a href="/caves">Caves</a></li>
2020-04-03 01:11:30 +01:00
<li><a href="/expedition/2019">Troggle</a></li>
2020-05-13 19:59:41 +01:00
<li><form name=P method=get action="/search" target="_top">
<input id="omega-autofocus" type=search name=P placeholder="testing" size=8 autofocus>
2020-05-13 19:59:41 +01:00
<input type=submit value="Search"></li>
2021-03-31 16:14:36 +01:00
{% if editable %}<li><a href="{% url "editexpopage" path %}" class="editlink"><strong>Edit this page</strong></a></li>{% endif %}
2021-04-14 00:11:59 +01:00
{% if cave_editable %}<li><a href="{% url "edit_cave" cave.slug %}" class="editlink"><strong>Edit this cave</strong></a></li>{% endif %}
</ul>
{% endif %}