micrach/templates/pages/500.html

23 lines
528 B
HTML
Raw Normal View History

2021-10-16 14:36:52 +03:00
<!DOCTYPE html>
2021-09-05 16:05:14 +03:00
<html lang="en">
<head>
{{ template "static" }}
<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"
src="/static/images/errors/500.png"
2021-09-05 16:05:14 +03:00
alt="All broken"
>
</a>
</div>
</body>
</html>