2020-01-12 06:33:02 -08:00
|
|
|
<!DOCTYPE html>
|
2021-04-27 14:44:35 -07:00
|
|
|
<html lang="{{ .Site.Language.Lang }}" class="color-toggle-hidden">
|
2022-01-06 04:58:10 -08:00
|
|
|
<head>
|
2021-04-22 13:07:09 -07:00
|
|
|
{{ partial "head/meta" . }}
|
2022-01-06 04:58:10 -08:00
|
|
|
<title>
|
2022-02-07 01:57:43 -08:00
|
|
|
{{- if eq .Kind "home" -}}
|
|
|
|
{{ .Site.Title }}
|
|
|
|
{{- else -}}
|
|
|
|
{{ printf "%s | %s" (partial "utils/title" .) .Site.Title }}
|
|
|
|
{{- end -}}
|
2022-01-06 04:58:10 -08:00
|
|
|
</title>
|
2021-04-22 13:07:09 -07:00
|
|
|
|
|
|
|
{{ partial "head/favicons" . }}
|
2021-09-28 11:44:59 -07:00
|
|
|
{{ partial "head/rel-me" . }}
|
|
|
|
{{ partial "head/microformats" . }}
|
2021-04-22 13:07:09 -07:00
|
|
|
{{ partial "head/others" . }}
|
2021-05-19 13:42:57 -07:00
|
|
|
{{ partial "head/custom" . }}
|
2022-01-06 04:58:10 -08:00
|
|
|
</head>
|
2020-01-12 06:33:02 -08:00
|
|
|
|
2022-01-06 04:58:10 -08:00
|
|
|
<body itemscope itemtype="https://schema.org/WebPage">
|
2020-01-12 06:33:02 -08:00
|
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
|
2022-01-06 04:58:10 -08:00
|
|
|
|
|
|
|
<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" . }}
|
2022-01-23 04:21:44 -08:00
|
|
|
|
|
|
|
|
|
|
|
<div class="gdoc-page__footer flex flex-wrap justify-between">
|
|
|
|
{{ partial "menu-nextprev" . }}
|
|
|
|
</div>
|
2022-01-06 04:58:10 -08:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ partial "site-footer" . }}
|
2020-01-12 06:33:02 -08:00
|
|
|
</div>
|
|
|
|
|
2020-05-31 09:20:39 -07:00
|
|
|
{{ partial "foot" . }}
|
2022-01-06 04:58:10 -08:00
|
|
|
</body>
|
2020-01-12 06:33:02 -08:00
|
|
|
</html>
|