Files
hugo-profile/layouts/404.html
T
gurusabarish 708d0a0022 docs
2022-03-24 18:42:53 +05:30

14 lines
369 B
HTML

{{ define "head" }}
<meta name="description" content={{ .Site.Params.description }}>
{{ end }}
{{ define "title" }}
{{ .Site.Title }} | 404 page not found
{{ end }}
{{ define "main" }}
<div class="container py-5 text-center">
<img src="/404.png" alt="404 page not found" class="img-fluid" width="40%">
<h1>404 Page Not Found</h1>
</div>
{{ end }}