Files
hugo-profile/layouts/404.html
T
gurusabarish 33b0f43282 Added ststic in missed files and renamed to staticPath
- Added `statics` params in the missed files
- Renamed `statics` to `staticPath`
2022-04-02 23:35:22 +05:30

14 lines
398 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="{{ .Site.Params.staticPath }}/404.png" alt="404 page not found" class="img-fluid" width="40%">
<h1>404 Page Not Found</h1>
</div>
{{ end }}