15 lines
401 B
HTML
15 lines
401 B
HTML
{{ define "main" }}
|
|
<div class="container-fluid">
|
|
<h1 class="text-center">404 Page not found</h1>
|
|
<p class="text-center">Sorry this is a Dead Link</p>
|
|
<div class="d-flex align-items-center justify-content-center">
|
|
<img
|
|
loading="lazy"
|
|
alt="Dead Link"
|
|
class="text-center img-fluid"
|
|
src="/404.png"
|
|
>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|