micrach/templates/400.html

26 lines
514 B
HTML
Raw Normal View History

2021-09-11 16:56:22 +03:00
<html lang="en">
<head>
{{ template "static" }}
<link
href="/static/error-image.css"
rel="stylesheet"
>
2021-10-05 21:53:12 +03:00
{{ template "meta-tags-static" }}
2021-09-11 16:56:22 +03:00
</head>
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>400</h1>
<h1>TITLE OR TEXT SHOULD NOT BE EMPTY</h1>
<a href="/" class="error-image-link">
<img
class="error-image"
src="/static/images/errors/404.png"
alt="Bad request"
>
</a>
</div>
</body>
</html>