micrach/templates/500.html

26 lines
506 B
HTML
Raw Normal View History

2021-09-05 16:05:14 +03:00
<html lang="en">
<head>
{{ template "static" }}
<link
2021-10-16 13:14:45 +03:00
href="/static/styles/error-image.css"
2021-09-05 16:05:14 +03:00
rel="stylesheet"
>
2021-10-05 21:53:12 +03:00
{{ template "meta-tags-static" }}
2021-09-05 16:05:14 +03:00
</head>
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>500</h1>
<h1>SOMETHING IS BROKEN</h1>
<a href="/" class="error-image-link">
<img
class="error-image"
src="/static/images/errors/500.png"
alt="All broken"
>
</a>
</div>
</body>
</html>