17 lines
457 B
HTML
Executable File
17 lines
457 B
HTML
Executable File
{% extends 'noel/base.html' %}
|
|
|
|
{% block title %} Page Not Found {% endblock %}
|
|
{% block extra_head %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<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 %}
|