troggle-unchained/templates/menu.html

18 lines
885 B
HTML
Raw Normal View History

{% if not homepage %}
<ul id="links">
<li><a href="/index.htm">Home</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>
2022-03-23 11:32:36 +00:00
<li><a href="/caves">Caves</a></li>
2022-05-19 13:58:54 +01:00
<li><a href="/infodx.htm">Site index</a></li>
<li><a href="/pubs.htm">Reports</a></li>
2022-03-10 22:59:47 +00:00
<li><a href="/guidebook/areas.htm">Areas</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 size=8 autofocus>
2020-05-13 19:59:41 +01:00
<input type=submit value="Search"></li>
2022-03-06 01:29:45 +00: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 %}