<!-- pagenotfound.html - this text visible because this template has been included -->
{% extends "expobase.html" %}
{% block extrahead %}
<style>
div#editLinks {
	position: absolute;
    background: #999;
	bottom:0px;
	right:0px;
	font-family: "Courier New", Courier, monospace;
	filter:alpha(opacity=75);
	-moz-opacity:.75;
	opacity:.75;
    text-align:right;
}

div#editLinks a{
	color:#FFF;
}
</style>
{% endblock %}
{% block title %}Page not found {{ path }}{% endblock %}

{% block body %}
<h1>Page not found {{ path }}</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 %}
   </div>
    {% endblock%}
    
<p>Probably a mistake. 
This page does not exist. 

Did you mistype a URL? 
If you do want to create this page click <a href="{%url "editexpopage" path %} ">this link</a>.
<p>
 
 <p>Did you get lost ?</p>
 
 <img align=center src="/handbook/i/204-area.png">
{% include "menu.html" %}
{% endblock %}