2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Error") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
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">
|
2023-01-25 00:08:42 +01:00
|
|
|
<img src="{{ static('images/errors/400art.svg') }}" alt=""/>
|
2017-07-12 12:04:21 +02:00
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
2022-09-06 12:04:03 +02:00
|
|
|
<h1 class="lead">{{ _("Page not found (404)") }}</h1>
|
2021-11-20 13:25:41 +01:00
|
|
|
<p>
|
2022-09-06 12:04:03 +02:00
|
|
|
{% trans %}
|
2021-11-20 13:25:41 +01:00
|
|
|
If this error is unexpected, you can
|
|
|
|
<a href="mailto:{{ support_email }}">contact support</a>.
|
2022-09-06 12:04:03 +02:00
|
|
|
{% endtrans %}
|
2021-11-20 13:25:41 +01:00
|
|
|
</p>
|
2017-07-12 12:04:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-04 21:14:38 +02:00
|
|
|
{% endblock %}
|