mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-27 01:33:04 +00:00
54878e0407
in rtl, the scrollbars were still in ltr mode which was now changed to avoid overflow of tooltips when attached to the "ending" corner of the box
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
{{- partial "page-meta.hugo" . }}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ .Page.Language | default "en" }}" dir="{{ T "Reading-direction" | default "ltr" }}">
|
|
<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>
|
|
|
|
{{- partial "favicon.html" . }}
|
|
{{- partial "stylesheet.html" . }}
|
|
<style>
|
|
p, li, ul {
|
|
text-align: center
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
</style>
|
|
{{- partial "custom-header.html" . }}
|
|
</head>
|
|
<body class="mobile-support" data-url="/">
|
|
<div id="body" class="default-animation" style="margin-left:0px;">
|
|
<div id="sidebar-overlay"></div>
|
|
<main id="body-inner" class="chapter" tabindex="-1">
|
|
<div class="flex-block-wrapper">
|
|
<article class="default">>
|
|
<h1>{{ T "title-404" }}</h1>
|
|
<p></p>
|
|
<p>{{ T "message-404" }}</p>
|
|
<p></p>
|
|
<p><a href="{{ partial "relLangPrettyUglyURL.hugo" (dict "page" . "to" .Site.Home) }}">{{ T "Go-to-homepage" }}</a></p>
|
|
<p><img src="{{ "images/gopher-404.jpg" | relURL }}" style="width:50%" alt="Page not found!"></p>
|
|
</article>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|