2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2017-08-08 19:32:16 +02:00
|
|
|
{% block portico_class_name %}error{% endblock %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2017-08-08 19:32:16 +02:00
|
|
|
{% block portico_content %}
|
|
|
|
<div class="error_page">
|
2017-07-12 12:04:21 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
2022-07-16 20:24:50 +02:00
|
|
|
<img src="/static/images/errors/400art.svg" alt=""/>
|
2017-07-12 12:04:21 +02:00
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
2020-08-26 17:45:58 +02:00
|
|
|
{% if status_code == 405 %}
|
|
|
|
<h1 class="lead">Method not allowed (405)</h1>
|
|
|
|
{% else %}
|
2017-07-12 12:04:21 +02:00
|
|
|
<h1 class="lead">Page not found (404)</h1>
|
2020-08-26 17:45:58 +02:00
|
|
|
{% endif %}
|
2021-11-20 13:25:41 +01:00
|
|
|
<p>
|
|
|
|
If this error is unexpected, you can
|
|
|
|
<a href="mailto:{{ support_email }}">contact support</a>.
|
|
|
|
</p>
|
2017-07-12 12:04:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-04 21:14:38 +02:00
|
|
|
{% endblock %}
|