2021-10-10 10:31:57 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ site.LanguageCode }}">
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
|
2022-09-03 15:30:38 -07:00
|
|
|
<body>
|
2022-11-08 17:45:38 -08:00
|
|
|
{{ block "body" . -}}
|
2022-09-03 15:30:38 -07:00
|
|
|
{{ block "header" . }}{{ end }}
|
2022-10-19 07:36:32 -07:00
|
|
|
<main class="{{ .Type }} {{ .Kind }}{{ if gt (len .Pages) 0 }} list{{ end }}">
|
2021-12-26 12:43:26 -07:00
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
</main>
|
2022-11-08 17:45:38 -08:00
|
|
|
{{- partial "development/page_info.html" . -}}
|
|
|
|
{{- block "footer" . -}}{{- end -}}
|
|
|
|
{{- end -}}
|
2021-10-10 10:31:57 -07:00
|
|
|
</body>
|
2022-03-25 23:21:43 -07:00
|
|
|
|
2022-11-08 17:45:38 -08:00
|
|
|
{{ with partial "resources/root_css.html" . -}}
|
|
|
|
<link rel="stylesheet" as="style" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}">
|
|
|
|
{{- end -}}
|
|
|
|
{{- with partial "resources/section_css.html" . -}}
|
|
|
|
<link rel="stylesheet" as="style" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}">
|
|
|
|
{{- end -}}
|
|
|
|
{{- with partial "resources/page_css.html" . -}}
|
|
|
|
<link rel="stylesheet" as="style" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}">
|
|
|
|
{{- end -}}
|
2022-08-27 10:09:55 -07:00
|
|
|
|
2022-10-19 07:36:18 -07:00
|
|
|
{{ block "styles" . }}{{ end }}
|
2022-09-03 15:30:38 -07:00
|
|
|
{{ block "scripts" . }}{{ end }}
|
2022-08-27 10:09:55 -07:00
|
|
|
|
2022-11-08 17:45:38 -08:00
|
|
|
{{- with partial "resources/site_js.html" . -}}
|
|
|
|
<script type="module" src="{{ .Permalink }}" integrity="{{ .Data.Integrity }}"></script>
|
|
|
|
{{ end }}
|
2021-10-10 10:31:57 -07:00
|
|
|
</html>
|