2021-10-16 14:36:52 +03:00
|
|
|
<!DOCTYPE html>
|
2021-09-05 16:05:14 +03:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{{ template "static" }}
|
2022-02-28 13:33:32 +03:00
|
|
|
<link href="/static/styles/error-image.css" rel="stylesheet">
|
2021-10-05 21:53:12 +03:00
|
|
|
{{ template "meta-tags-static" }}
|
2021-09-05 16:05:14 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2021-10-16 18:06:56 +03:00
|
|
|
<div class="vh-100 d-flex justify-content-center align-items-center flex-column">
|
2021-09-05 16:05:14 +03:00
|
|
|
<h1>500</h1>
|
2021-10-16 13:52:25 +03:00
|
|
|
<h1 class="text-center">SOMETHING IS BROKEN</h1>
|
2021-09-05 16:05:14 +03:00
|
|
|
<a href="/" class="error-image-link">
|
|
|
|
<img
|
|
|
|
class="error-image"
|
2022-02-28 13:33:32 +03:00
|
|
|
src="/static/images/errors/500.png"
|
2021-09-05 16:05:14 +03:00
|
|
|
alt="All broken"
|
|
|
|
>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|