2024-05-31 07:21:14 +02:00
|
|
|
{% extends "zerver/portico_error_page.html" %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Error") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2024-05-31 07:21:14 +02:00
|
|
|
{% block error_page_content %}
|
|
|
|
<img src="{{ static('images/errors/400art.svg') }}" alt=""/>
|
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">{{ _("Page not found (404)") }}</h1>
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
If this error is unexpected, you can
|
|
|
|
<a href="mailto:{{ support_email }}">contact support</a>.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2017-07-12 12:04:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-04 21:14:38 +02:00
|
|
|
{% endblock %}
|