mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 22:32:33 +03:00
26 lines
509 B
HTML
26 lines
509 B
HTML
|
<html lang="en">
|
||
|
<head>
|
||
|
{{ template "static" }}
|
||
|
<link
|
||
|
href="/static/error-image.css"
|
||
|
rel="stylesheet"
|
||
|
>
|
||
|
|
||
|
{{ template "static-meta" }}
|
||
|
</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>
|