actions/themes/vncnt-hugo/layouts/404.html

18 lines
662 B
HTML
Raw Normal View History

2024-02-27 02:00:24 -05:00
<!DOCTYPE HTML>
{{if .Site.Language}}<html lang="{{.Site.Language}}">{{else}}<html lang="en">{{end}}
{{ partial "includes" . }}
<title>This page was not found.</title>
<div class="error404">
<div class="grid-container full" role="main">
<div>
<h1>{{ "**404**" | markdownify }}</h1>
{{ with .Site.Params.error404 }}
<h2 aria-label="{{ . | markdownify }}">{{ "---" | markdownify }}{{ . | markdownify }}</h2>
{{ else }}
<h2 aria-label="{{ "There is no such page." | markdownify }}">{{ "---" | markdownify }}{{ "There is no such page." | markdownify}}</h2>
{{ end }}
</div>
</div>
</div>
</html>