17 lines
544 B
HTML
17 lines
544 B
HTML
{% extends 'festival_wireframe.html' %}
|
|
|
|
{% block title %} Page Not Found {% endblock %}
|
|
{% block extra_head %}
|
|
<link rel="stylesheet" type="text/css" href="/static/css/error_pages.css" />
|
|
{% endblock %}
|
|
|
|
{% block centerCol %}
|
|
<div class="errorTxt">
|
|
This is a website acting like it found the page you were looking for, but really didn't.
|
|
<br /><br />
|
|
Please check the url you typed in, and if it seems like an error on our part, please email admin@theatreforum.in.
|
|
<br /><br />
|
|
Thanks, and err.. apologies.
|
|
</div>
|
|
{% endblock %}
|