2020-01-12 06:33:02 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
|
|
|
|
|
|
<head>
|
2021-04-22 13:07:09 -07:00
|
|
|
{{ partial "head/meta" . }}
|
|
|
|
<title>{{ if not (eq .Kind "home") }}{{ partial "title" . }} | {{ end }}{{ .Site.Title }}</title>
|
|
|
|
|
|
|
|
{{ partial "head/favicons" . }}
|
|
|
|
{{ partial "head/others" . }}
|
2020-01-12 06:33:02 -08:00
|
|
|
</head>
|
|
|
|
|
2021-02-20 13:54:49 -08:00
|
|
|
<body itemscope itemtype="https://schema.org/WebPage">
|
2020-01-12 06:33:02 -08:00
|
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
<input type="checkbox" class="hidden" id="menu-control" />
|
2020-02-24 13:11:13 -08:00
|
|
|
{{ partial "site-header" (dict "Root" . "MenuEnabled" true) }}
|
2020-01-12 06:33:02 -08:00
|
|
|
|
|
|
|
<main class="container flex flex-even">
|
|
|
|
<aside class="gdoc-nav">
|
|
|
|
{{ partial "menu" . }}
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<div class="gdoc-page">
|
|
|
|
{{ template "main" . }}
|
|
|
|
{{ partial "page-footer" . }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ partial "site-footer" . }}
|
|
|
|
</div>
|
|
|
|
|
2020-05-31 09:20:39 -07:00
|
|
|
{{ partial "foot" . }}
|
|
|
|
</body>
|
2020-01-12 06:33:02 -08:00
|
|
|
</html>
|