forked from expo/troggle
81 lines
2.8 KiB
HTML
81 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<!-- base.html - this text visible because this template has been included -->
|
|
<html lang="en">
|
|
<head>
|
|
<script>document.interestCohort = null;</script> <!-- Turn off Google FLoC -->
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/trog3.css" title="troggle-style"/>
|
|
<title>{% block title %}Troggle{% endblock %}</title>
|
|
<!-- <script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script> -->
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header">
|
|
<h1>CUCC Expeditions to Austria: 1976 - 2021</h1>
|
|
<div id="editLinks"> {% block loginInfo %}
|
|
<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 %}
|
|
| <a <a href='/accounts/logout/'>Log out</a> {% else %} <a href='/accounts/login/'>Log in</a> {% endif %}
|
|
{% endblock%}
|
|
{% block editLink %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="toolbarlinks">
|
|
<a href="{% url "survexcavessingle" "204" %}">Survex-204</a> |
|
|
<a href="/survexfile/">Survex</a> |
|
|
<a href="{% url "survexcaveslist" %}">All Survex</a> |
|
|
<a href="{% url "scanswallets" %}">Scans</a> |
|
|
<a href="{% url "dwgdata" %}">Drawings</a> |
|
|
<a href="/1623/290/290.html">290 (FGH)</a> |
|
|
<a href="/1623/291/291">291 (GSH)</a> |
|
|
<a href="/1623/204/204.html">204 (Steinbrucken)</a> |
|
|
<br>
|
|
|
|
<a href="{% url "dataissues" %}">Data Issues</a> |
|
|
<a href="/handbook/computing/onlinesystems.html">handbook</a> |
|
|
<a href="/handbook/computing/todo-data.html">tasks to do </a> |
|
|
<a id="cavesLink" href="{% url "caveindex" %}">caves</a> |
|
|
<a id="folklink" href="/folk">expoers</a> |
|
|
<a id="caversLink" href="{% url "personindex" %}">survey lengths</a> |
|
|
<a href="{% url "stats" %}">statistics</a> |
|
|
<a href="{% url "expedition" 2018 %}">Expo2018</a> |
|
|
<a href="{% url "expedition" 2019 %}">Expo2019</a> |
|
|
<a href="{% url "controlpanel" %}">import/export</a> |
|
|
<a href="/admin/">Django admin</a>
|
|
</div>
|
|
|
|
<div id="nav">
|
|
{% block nav %}
|
|
<!-- Use id="nav" for the left side menu -->
|
|
{% endblock %}
|
|
</div>
|
|
|
|
<div id="content" >
|
|
|
|
{% block contentheader %}
|
|
{% endblock %}
|
|
|
|
<div id="related">
|
|
{% block related %}
|
|
<script language="javascript">
|
|
$('#related').remove()
|
|
/*This is a hack to stop a line appearing because of the empty div border*/
|
|
</script>
|
|
{% endblock %}
|
|
</div>
|
|
{% block content %}
|
|
REPLACE : The content
|
|
{% endblock %}
|
|
</div>
|
|
<div class="footer">
|
|
</div>
|
|
</body>
|
|
</html>
|