-
-
Notifications
You must be signed in to change notification settings - Fork 580
Expand file tree
/
Copy path404.html
More file actions
14 lines (12 loc) · 596 Bytes
/
Copy path404.html
File metadata and controls
14 lines (12 loc) · 596 Bytes
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.Params.terms.pageNotFound | default (i18n "page_not_found") }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div class="container py-5 text-center">
<img src="{{ (printf "%s404.png" (.Site.Params.staticPath | default "")) | relURL }}" alt='{{ .Site.Params.terms.pageNotFound | default (i18n "page_not_found") }}' class="img-fluid" width="40%">
<h1>{{ .Site.Params.terms.pageNotFound | default (i18n "page_not_found") }}</h1>
</div>
{{ end }}