mirror of
https://github.com/TrudeEH/web.git
synced 2025-12-06 00:13:36 +00:00
38 lines
990 B
HTML
38 lines
990 B
HTML
{{- 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" . }}
|
|
</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">
|
|
{{ if or .IsHome (eq .Kind "section") (eq .Kind "taxonomy") (eq .Kind "term") }}
|
|
<div id='stars'></div>
|
|
<div id='stars2'></div>
|
|
<div id='stars3'></div>
|
|
<style>
|
|
body {
|
|
margin-top: -6px !important;
|
|
}
|
|
</style>
|
|
{{ end }}
|
|
{{- partialCached "header.html" . .Page -}}
|
|
<main class="main">
|
|
{{- block "main" . }}{{ end }}
|
|
</main>
|
|
{{ partialCached "footer.html" . .Layout .Kind (.Param "hideFooter") (.Param "ShowCodeCopyButtons") -}}
|
|
</body>
|
|
|
|
</html>
|