wantsum/layouts/_default/baseof.html
2024-07-05 21:32:23 +01:00

70 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ hugo.Generator }}
{{ if .IsHome -}}
<title>{{ .Site.Title }}</title>
{{- else -}}
<title>{{ .Title }} &middot; {{ .Site.Title }}</title>
{{- end }}
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
{{ partial "seo.html" . }}
<link type="text/css"
rel="stylesheet"
href="{{ `css/print.css` | relURL }}"
media="print">
<link type="text/css"
rel="stylesheet"
href="{{ `css/poole.css` | relURL }}">
<link type="text/css"
rel="stylesheet"
href="{{ `css/hyde-light.css` | relURL }}">
<link type="text/css"
rel="stylesheet"
href="{{ `css/hyde-dark.css` | relURL }}"
media="(prefers-color-scheme: dark)">
{{ partial "theme-color.html" . }}
{{ range $.Site.Params.customCss -}}
<link type="text/css" rel="stylesheet" href="{{ . | relURL }}">
{{- end}}
<link rel="stylesheet"
href="/fonts.css">
<link rel="shortcut icon" href="/favicon.ico">
<!-- RSS -->
{{ range .AlternativeOutputFormats -}}
{{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
{{ end -}}
</head>
<body>
{{ partial "sidebar.html" . }}
<main class="content container" data-pagefind-body>
{{ block "main" . -}}{{- end }}
</main>
{{ partial "footer.html" . }}
{{ range $.Site.Params.customJs -}}
<script src="{{ . | relURL }}"></script>
{{- end}}
<script src="{{ `js/colour-toggle.js` | relURL }}"></script>
</body>
</html>