blog.cybershell.xyz/layouts/_defaults/baseof.html

31 lines
886 B
HTML
Raw Normal View History

2024-10-30 05:09:32 +00:00
{{- if lt hugo.Version "0.112.4" }}
{{- errorf "=> hugo v0.112.4 or greater is required for hugo-PaperMod to build " }}
{{- end -}}
<!DOCTYPE html>
<html lang="{{ site.Language }}" dir="{{ .Language.LanguageDirection | default "auto" }}">
<head>
{{- partial "head.html" . }}
2024-10-31 22:25:10 +00:00
{{ partial "plausible_head.html" . }}
2024-11-01 00:45:33 +00:00
{{ partial "plausible_csp.html" . }}
2024-11-01 00:42:37 +00:00
<!-- {{ partial "analytics.html" . }} -->
2024-10-30 05:09:32 +00:00
</head>
<body class="
{{- if (or (ne .Kind `page` ) (eq .Layout `archives`) (eq .Layout `search`)) -}}
{{- print "list" -}}
{{- end -}}
{{- if eq site.Params.defaultTheme `dark` -}}
{{- print " dark" }}
{{- end -}}
" id="top">
{{- partialCached "header.html" . .Page -}}
<main class="main">
{{- block "main" . }}{{ end }}
</main>
{{ partialCached "footer.html" . .Layout .Kind (.Param "hideFooter") (.Param "ShowCodeCopyButtons") -}}
</body>
</html>