Welcome to mirror list, hosted at ThFree Co, Russian Federation.

404.html « layouts - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63104f871974a8401ed84e92002bafe33a8460ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ 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 }}