mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-04 20:30:40 +00:00
68 lines
1.8 KiB
HTML
68 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html
|
|
lang="{{ .Site.Language.Lang }}"
|
|
class="color-toggle-hidden"
|
|
{{ if default false .Site.Params.geekdocDarkModeCode }}code-theme="dark"{{ end }}
|
|
>
|
|
<head>
|
|
{{ partial "head/meta" . }}
|
|
<title>
|
|
{{- if eq .Kind "home" -}}
|
|
{{ .Site.Title }}
|
|
{{- else -}}
|
|
{{ printf "%s | %s" (partial "utils/title" .) .Site.Title }}
|
|
{{- end -}}
|
|
</title>
|
|
|
|
{{ partial "head/favicons" . }}
|
|
{{ partial "head/rel-me" . }}
|
|
{{ partial "head/microformats" . }}
|
|
{{ partial "head/others" . }}
|
|
{{ partial "head/custom" . }}
|
|
</head>
|
|
|
|
<body itemscope itemtype="https://schema.org/WebPage">
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
|
|
<div
|
|
class="wrapper {{ if default false .Site.Params.geekdocDarkModeDim }}dark-mode-dim{{ end }}"
|
|
>
|
|
<input type="checkbox" class="hidden" id="menu-control" />
|
|
<input type="checkbox" class="hidden" id="menu-header-control" />
|
|
{{ $navEnabled := default true .Page.Params.geekdocNav }}
|
|
{{ partial "site-header" (dict "Root" . "MenuEnabled" $navEnabled) }}
|
|
|
|
|
|
<main class="container flex flex-even">
|
|
{{ if $navEnabled }}
|
|
<aside class="gdoc-nav">
|
|
{{ partial "menu" . }}
|
|
</aside>
|
|
{{ end }}
|
|
|
|
|
|
<div class="gdoc-page">
|
|
{{ template "main" . }}
|
|
|
|
|
|
{{ $showPrevNext := (default true .Site.Params.geekdocNextPrev) }}
|
|
{{ if $showPrevNext }}
|
|
<div class="gdoc-page__footer flex flex-wrap justify-between">
|
|
{{ if .Site.Params.geekdocMenuBundle }}
|
|
{{ partial "menu-bundle-np" . }}
|
|
{{ else }}
|
|
{{ partial "menu-filetree-np" . }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
|
|
{{ partial "site-footer" . }}
|
|
</div>
|
|
|
|
{{ partial "foot" . }}
|
|
</body>
|
|
</html>
|