17 lines
No EOL
473 B
HTML
17 lines
No EOL
473 B
HTML
{% extends base_template %}
|
|
|
|
{% set title="Not Found" %}
|
|
|
|
{% block content %}
|
|
<div class="container content panel-container">
|
|
<div class="panel panel-danger">
|
|
<div class="panel-heading">
|
|
<i class="icon-exclamation-sign"></i> Page missing or moved
|
|
</div>
|
|
<div class="panel-body">
|
|
<p>We are very sorry for this, but the page you are looking for is missing
|
|
(this could be because of a typo in the address) or moved.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |