2020-01-12 14:33:02 +00:00
|
|
|
<!DOCTYPE html>
|
2022-05-31 12:14:01 +00:00
|
|
|
<html
|
|
|
|
lang="{{ .Site.Language.Lang }}"
|
|
|
|
class="color-toggle-hidden"
|
2023-06-22 07:45:54 +00:00
|
|
|
{{ if default false .Site.Params.geekdocDarkModeCode }}code-theme="dark"{{ end }}
|
2022-05-31 12:14:01 +00:00
|
|
|
>
|
2022-01-06 12:58:10 +00:00
|
|
|
<head>
|
2021-04-22 20:07:09 +00:00
|
|
|
{{ partial "head/meta" . }}
|
2022-01-06 12:58:10 +00:00
|
|
|
<title>
|
2022-02-07 09:57:43 +00:00
|
|
|
{{- if eq .Kind "home" -}}
|
|
|
|
{{ .Site.Title }}
|
|
|
|
{{- else -}}
|
|
|
|
{{ printf "%s | %s" (partial "utils/title" .) .Site.Title }}
|
|
|
|
{{- end -}}
|
2022-01-06 12:58:10 +00:00
|
|
|
</title>
|
2021-04-22 20:07:09 +00:00
|
|
|
|
|
|
|
{{ partial "head/favicons" . }}
|
2021-09-28 18:44:59 +00:00
|
|
|
{{ partial "head/rel-me" . }}
|
|
|
|
{{ partial "head/microformats" . }}
|
2021-04-22 20:07:09 +00:00
|
|
|
{{ partial "head/others" . }}
|
2021-05-19 20:42:57 +00:00
|
|
|
{{ partial "head/custom" . }}
|
2022-01-06 12:58:10 +00:00
|
|
|
</head>
|
2020-01-12 14:33:02 +00:00
|
|
|
|
2022-01-06 12:58:10 +00:00
|
|
|
<body itemscope itemtype="https://schema.org/WebPage">
|
2020-01-12 14:33:02 +00:00
|
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
|
2022-01-06 12:58:10 +00:00
|
|
|
|
|
|
|
<div
|
2023-06-22 07:45:54 +00:00
|
|
|
class="wrapper {{ if default false .Site.Params.geekdocDarkModeDim }}dark-mode-dim{{ end }}"
|
2022-01-06 12:58:10 +00:00
|
|
|
>
|
|
|
|
<input type="checkbox" class="hidden" id="menu-control" />
|
|
|
|
<input type="checkbox" class="hidden" id="menu-header-control" />
|
2023-06-22 07:45:54 +00:00
|
|
|
{{ $navEnabled := default true .Page.Params.geekdocNav }}
|
2022-01-06 12:58:10 +00:00
|
|
|
{{ 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" . }}
|
2022-01-23 12:21:44 +00:00
|
|
|
|
|
|
|
|
2023-10-20 07:39:38 +00:00
|
|
|
{{ $showPrevNext := (default true .Site.Params.geekdocNextPrev) }}
|
|
|
|
{{ if $showPrevNext }}
|
2022-01-23 12:21:44 +00:00
|
|
|
<div class="gdoc-page__footer flex flex-wrap justify-between">
|
2023-10-20 07:39:38 +00:00
|
|
|
{{ if .Site.Params.geekdocMenuBundle }}
|
|
|
|
{{ partial "menu-bundle-np" . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ partial "menu-filetree-np" . }}
|
|
|
|
{{ end }}
|
2022-01-23 12:21:44 +00:00
|
|
|
</div>
|
2023-10-20 07:39:38 +00:00
|
|
|
{{ end }}
|
2022-01-06 12:58:10 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ partial "site-footer" . }}
|
2020-01-12 14:33:02 +00:00
|
|
|
</div>
|
|
|
|
|
2020-05-31 16:20:39 +00:00
|
|
|
{{ partial "foot" . }}
|
2022-01-06 12:58:10 +00:00
|
|
|
</body>
|
2020-01-12 14:33:02 +00:00
|
|
|
</html>
|