2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-28 18:11:52 +00:00
troggle/templates/base.html

82 lines
2.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2011-07-11 02:10:22 +01:00
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2011-07-11 02:10:22 +01:00
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/main3.css" title="eyeCandy"/>
2019-06-26 20:57:24 +01:00
<link rel="alternate stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/mainplain.css" title="plain"/>
2021-04-07 16:04:27 +01:00
<!-- Only used on old troggle menu removed in 2020
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/dropdownNavStyle.css" />-->
2011-07-11 02:10:22 +01:00
<title>{% block title %}Troggle{% endblock %}</title>
<!-- <script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script> -->
2011-07-11 02:10:22 +01:00
{% block head %}{% endblock %}
</head>
2021-04-07 16:04:27 +01:00
<body>
2011-07-11 02:10:22 +01:00
<div id="header">
2021-02-06 00:18:48 +00:00
<h1>CUCC Expeditions to Austria: 1976 - 2021</h1>
2019-06-26 20:57:24 +01:00
<div id="editLinks"> {% block loginInfo %}
2021-04-07 16:04:27 +01:00
<a href="/">Home</a> |
<a id="cuccLink" href="http://camcaving.uk/">CUCC</a> |
<a id="expoWebsiteLink" href="http://expo.survex.com">expo.survex</a> |
{% if user.username %}User:{{ user.username }}
{% if user.person %}(<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>){% endif %}
2021-04-06 01:19:50 +01:00
| <a <a href='/accounts/logout/'>Log out</a> {% else %} <a href='/accounts/login/'>Log in</a> {% endif %}
2019-06-26 20:57:24 +01:00
{% endblock%}
2011-07-11 02:10:22 +01:00
{% block editLink %}
{% endblock %}
</div>
</div>
2019-06-26 20:57:24 +01:00
<div class="toolbarlinks">
2021-04-11 03:02:06 +01:00
<a href="{% url "survexcavessingle" "204" %}">Survex-204</a> |
<a href="/survexfile/">Survex</a> |
2019-06-26 20:57:24 +01:00
<a href="{% url "survexcaveslist" %}">All Survex</a> |
<a href="{% url "surveyscansfolders" %}">Scans</a> |
2020-06-28 01:50:34 +01:00
<a href="{% url "tunneldata" %}">Drawing files</a> |
<a href="/1623/290/290.html">290 (FGH)</a> |
<a href="/1623/291/291.html">291 (GSH)</a> |
2021-04-11 03:02:06 +01:00
<a href="/1623/204/204.html">204 (Steinbrucken)</a> |
2020-06-16 22:16:48 +01:00
<br>
2021-04-11 20:00:09 +01:00
<a href="{% url "dataissues" %}">Data Issues</a> |
2021-04-07 16:04:27 +01:00
<a href="/handbook/computing/onlinesystems.html">handbook</a> |
<a href="/handbook/computing/todo-data.html">tasks to do </a> |
2020-06-16 22:16:48 +01:00
<a id="cavesLink" href="{% url "caveindex" %}">caves</a> |
2021-04-07 16:04:27 +01:00
<a id="folklink" href="/folk">expoers</a> |
<a id="caversLink" href="{% url "personindex" %}">survey lengths</a> |
2021-04-11 03:02:06 +01:00
<a href="{% url "stats" %}">statistics</a> |
<a href="{% url "expedition" 2018 %}">Expo2018</a> |
<a href="{% url "expedition" 2019 %}">Expo2019</a> |
2021-04-07 16:04:27 +01:00
<a href="{% url "controlpanel" %}">import/export</a> |
<a href="/admin/">Django admin</a>
2019-06-26 20:57:24 +01:00
</div>
2011-07-11 02:10:22 +01:00
<div id="nav">
2019-06-26 20:57:24 +01:00
{% block nav %}
2011-07-11 02:10:22 +01:00
<!-- Use id="nav" for the left side menu -->
{% endblock %}
</div>
2019-06-26 20:57:24 +01:00
2011-07-11 02:10:22 +01:00
<div id="content" >
{% block contentheader %}
{% endblock %}
<div id="related">
{% block related %}
<script language="javascript">
2019-06-26 20:57:24 +01:00
$('#related').remove()
/*This is a hack to stop a line appearing because of the empty div border*/
2011-07-11 02:10:22 +01:00
</script>
{% endblock %}
</div>
{% block content %}
REPLACE : The content
{% endblock %}
2019-06-26 20:57:24 +01:00
</div>
<div class="footer">
</div>
2011-07-11 02:10:22 +01:00
</body>
</html>