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>
|
|
|
|
{{ block "body" . }}
|
|
|
|
{{ 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-09-07 08:44:52 -07:00
|
|
|
{{ partial "development/page_info.html" . }}
|
2022-09-03 15:30:38 -07:00
|
|
|
{{ block "footer" . }}{{ end }}
|
|
|
|
{{ end }}
|
2021-10-10 10:31:57 -07:00
|
|
|
</body>
|
2022-03-25 23:21:43 -07:00
|
|
|
|
2022-09-03 15:30:38 -07:00
|
|
|
<style>
|
|
|
|
@font-face {
|
|
|
|
font-family: "Museo_Slab";
|
2022-10-19 07:36:18 -07:00
|
|
|
src: url("{{ `/fonts/Museo_Slab_500.woff2` | relURL }}") format("woff2"),
|
|
|
|
url("{{ `/fonts/Museo_Slab_500.woff` | relURL }}") format("woff");
|
2022-09-03 15:30:38 -07:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
</style>
|
2022-10-19 07:36:18 -07:00
|
|
|
<link rel="stylesheet" as="style" href="{{ `/styles/root.css` | relURL }}">
|
|
|
|
{{- if not hugo.IsProduction -}}
|
|
|
|
<link rel="stylesheet" as="style" href="{{ `/styles/development.css` | relURL }}">
|
|
|
|
{{- end -}}
|
2022-10-15 10:02:28 -07:00
|
|
|
|
|
|
|
{{- $includedCSS := slice -}}
|
|
|
|
{{- if not .FirstSection.IsHome -}}
|
|
|
|
{{- range .FirstSection.Resources.Match "*.css" -}}
|
|
|
|
{{- if not (in $includedCSS .Permalink) -}}
|
|
|
|
{{- $includedCSS = $includedCSS | append .Permalink -}}
|
2022-10-19 07:36:18 -07:00
|
|
|
<link rel="stylesheet" as="style" href="{{ .RelPermalink }}">
|
2022-10-15 10:02:28 -07:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
2022-10-19 07:36:18 -07:00
|
|
|
|
2022-10-15 10:02:28 -07:00
|
|
|
{{- range .Resources.Match "*.css" -}}
|
|
|
|
{{- if not (in $includedCSS .Permalink) -}}
|
|
|
|
{{- $includedCSS = $includedCSS | append .Permalink -}}
|
2022-10-19 07:36:18 -07:00
|
|
|
<link rel="stylesheet" as="style" href="{{ .RelPermalink }}">
|
2022-10-15 10:02:28 -07:00
|
|
|
{{- end -}}
|
|
|
|
{{- 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-10-19 07:36:18 -07:00
|
|
|
<script src="{{ `scripts/site.js` | relURL }}"></script>
|
2021-10-10 10:31:57 -07:00
|
|
|
</html>
|