2016-04-11 23:46:08 +00:00
|
|
|
<!DOCTYPE html>
|
2018-02-02 13:14:32 +00:00
|
|
|
<html lang="{{ .Page.Language | default "en" }}" class="js csstransforms3d">
|
2021-09-11 22:40:03 +00:00
|
|
|
<head>
|
|
|
|
{{- partial "meta.html" . }}
|
|
|
|
{{- .Scratch.Add "title" "" }}
|
|
|
|
{{- if eq .Site.Data.titles .Title }}
|
|
|
|
{{- .Scratch.Set "title" (index .Site.Data.titles .Title).title }}
|
|
|
|
{{- else }}
|
|
|
|
{{- .Scratch.Set "title" .Title}}
|
|
|
|
{{- end }}
|
|
|
|
<title>{{ .Scratch.Get "title" }} {{ default "::" .Site.Params.titleSeparator }} {{ .Site.Title }}</title>
|
|
|
|
|
2022-02-06 12:51:54 +00:00
|
|
|
{{- partial "favicon.html" . }}
|
|
|
|
{{- partial "stylesheet.html" . }}
|
2021-09-11 22:40:03 +00:00
|
|
|
<style>
|
|
|
|
p, li, ul {
|
|
|
|
text-align: center
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{- partial "custom-header.html" . }}
|
|
|
|
</head>
|
2022-02-13 08:45:11 +00:00
|
|
|
<body class="default-animation" data-url="/">
|
2022-02-13 00:53:23 +00:00
|
|
|
<div id="body default-animation" style="margin-left:0px;">
|
2022-02-27 08:59:38 +00:00
|
|
|
<div id="sidebar-overlay"></div>
|
2022-02-27 08:53:33 +00:00
|
|
|
<main id="body-inner" class="chapter">
|
2022-02-28 00:19:32 +00:00
|
|
|
<div class="flex-block-wrapper">
|
|
|
|
<h1>{{ T "title-404" }}</h1>
|
|
|
|
<p></p>
|
|
|
|
<p>{{ T "message-404" }}</p>
|
|
|
|
<p></p>
|
|
|
|
<p><a href="{{ "" | relLangURL }}">{{ T "Go-to-homepage" }}</a></p>
|
|
|
|
<p><img src="{{ "/images/gopher-404.jpg" | relURL }}" style="width:50%" alt="Page not found!"></p>
|
|
|
|
</div>
|
2022-02-27 08:53:33 +00:00
|
|
|
</main>
|
2021-09-13 17:23:38 +00:00
|
|
|
</div>
|
2016-04-11 23:46:08 +00:00
|
|
|
</body>
|
|
|
|
</html>
|