2016-04-12 01:46:08 +02:00
|
|
|
<!DOCTYPE html>
|
2022-11-13 11:33:32 +01:00
|
|
|
{{- partialCached "page-meta.hugo" . .RelPermalink }}
|
2022-11-13 10:55:17 +01:00
|
|
|
{{- $outputFormat := partial "output-format.hugo" . }}
|
2022-11-07 20:57:17 +01:00
|
|
|
<html lang="{{ .Page.Language | default "en" }}" dir="{{ T "Reading-direction" | default "ltr" }}">
|
2021-09-12 00:40:03 +02: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-11-12 15:16:53 +01:00
|
|
|
{{- partialCached "favicon.html" . }}
|
2022-11-13 10:55:17 +01:00
|
|
|
{{- partialCached "stylesheet.html" (dict "page" . "outputFormat" $outputFormat) $outputFormat }}
|
2021-09-12 00:40:03 +02:00
|
|
|
<style>
|
|
|
|
p, li, ul {
|
|
|
|
text-align: center
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{- partial "custom-header.html" . }}
|
|
|
|
</head>
|
2022-11-15 07:34:06 +01:00
|
|
|
<body class="mobile-support" data-url="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}">
|
2023-02-17 15:08:43 +01:00
|
|
|
<div id="body" class="default-animation" style="margin-left: 0;">
|
2022-02-27 09:59:38 +01:00
|
|
|
<div id="sidebar-overlay"></div>
|
2022-06-06 23:58:00 +02:00
|
|
|
<main id="body-inner" class="chapter" tabindex="-1">
|
2022-02-28 01:19:32 +01:00
|
|
|
<div class="flex-block-wrapper">
|
2022-11-08 09:23:31 +01:00
|
|
|
<article class="default">
|
2023-02-01 08:17:48 +01:00
|
|
|
<h1 id="{{ T "title-404" | anchorize }}">{{ T "title-404" }}</h1>
|
2022-11-01 02:00:50 +01:00
|
|
|
<p></p>
|
|
|
|
<p>{{ T "message-404" }}</p>
|
|
|
|
<p></p>
|
2022-11-11 13:44:23 +01:00
|
|
|
<p><a href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .Site.Home) }}">{{ T "Go-to-homepage" }}</a></p>
|
2022-11-01 02:00:50 +01:00
|
|
|
<p><img src="{{ "images/gopher-404.jpg" | relURL }}" style="width:50%" alt="Page not found!"></p>
|
|
|
|
</article>
|
2022-02-28 01:19:32 +01:00
|
|
|
</div>
|
2022-02-27 09:53:33 +01:00
|
|
|
</main>
|
2021-09-13 19:23:38 +02:00
|
|
|
</div>
|
2016-04-12 01:46:08 +02:00
|
|
|
</body>
|
|
|
|
</html>
|