2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2013-03-11 20:48:13 +01:00
|
|
|
{% block customhead %}
|
2016-04-21 08:48:33 +02:00
|
|
|
{{ super() }}
|
2021-04-21 00:46:14 +02:00
|
|
|
<meta http-equiv="refresh" content="60;URL='/'" />
|
2013-03-06 18:20:57 +01:00
|
|
|
{% 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 11:59:42 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
2022-07-16 20:24:50 +02:00
|
|
|
<img src="/static/images/errors/500art.svg" alt=""/>
|
2017-07-12 11:59:42 +02:00
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">Internal server error</h1>
|
|
|
|
<p>This Zulip server is currently experiencing some technical difficulties. Sorry about that!</p>
|
|
|
|
<p>The page will reload automatically soon after service is restored.</p>
|
2022-09-12 18:29:56 +02:00
|
|
|
<p>If you'd like, you can <a href="mailto:{{ support_email }}">drop us a line</a> to let us know what happened.</p>
|
2017-07-12 11:59:42 +02:00
|
|
|
</div>
|
2012-10-04 21:14:38 +02:00
|
|
|
|
2017-07-12 11:59:42 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-22 21:06:05 +02:00
|
|
|
|
2012-10-04 21:14:38 +02:00
|
|
|
{% endblock %}
|