mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
xmlns:svg is an XML namespace declaration that would be valid in XHTML but not in HTML. Even in XHTML, it wouldn’t be necessary because we don’t write SVG tags prefixed like <svg:circle>, only unprefixed like <circle>. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
56 lines
2.4 KiB
HTML
56 lines
2.4 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">
|
|
<!-- This requires a hardcoded path because this error page is
|
|
for when Django is down -->
|
|
<link href="/static/webpack-bundles/error-styles.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="header" style="background-color: #c9e9e0;">
|
|
<div class="header-main" id="top_navbar">
|
|
<div class="float-left">
|
|
<div>
|
|
<a class="brand logo" href="https://zulipchat.com/">
|
|
<svg class="brand-logo" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 40 40" version="1.1">
|
|
<g transform="translate(-297.14285,-466.64792)">
|
|
<circle cx="317.14285" cy="486.64792" r="19.030317" style="fill:hsl(156, 100%, 24%)!important;stroke-width:1.93936479;stroke:transparent"></circle>
|
|
<path d="m309.24286 477.14791 14.2 0 1.6 3.9-11.2 11.9 9.6 0 1.6 3.2-14.2 0-1.6-3.9 11.2-11.9-9.6 0z" style="fill:#52c2af;stroke:#52c2af"></path>
|
|
</g>
|
|
</svg>
|
|
<span style="color: hsl(156, 100%, 24%);">Zulip</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<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>
|