mirror of https://github.com/zulip/zulip.git
29 lines
857 B
HTML
29 lines
857 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Error") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block portico_class_name %}error{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
<div class="error_page">
|
|
<div class="container">
|
|
<div class="row-fluid">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|