mirror of https://github.com/zulip/zulip.git
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Zulip - 500 internal server error</title>
|
|
<link href="/static/third/bootstrap/css/bootstrap.css" rel="stylesheet">
|
|
<link href="/static/third/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
|
<!-- NB: Relies on the fact that PipelineCachedStorage also includes
|
|
a copy of the file with no hash in the name.
|
|
This file will not load in dev unless you run `manage.py collectstatic`. -->
|
|
<link href="/static/min/portico.css" rel="stylesheet">
|
|
|
|
<meta http-equiv="refresh" content="60;URL='/'">
|
|
|
|
</head>
|
|
|
|
<body class="error_page">
|
|
<!-- TODO: Make nginx 5xx error page customizable -->
|
|
<!-- This is tricky because it's not served by Django, -->
|
|
<!-- so we can't use variables -->
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
|
<img src="/static/images/500art.svg" alt=""/>
|
|
<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>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|