44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.LanguageCode }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
{{ block "body" . }}
|
|
{{ block "header" . }}{{ end }}
|
|
<main class="{{ .Type }}">
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
{{ partial "development/page_info.html" . }}
|
|
{{ block "footer" . }}{{ end }}
|
|
{{ end }}
|
|
</body>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: "Museo_Slab";
|
|
src: url("{{ `/fonts/Museo_Slab_500.woff2` | absURL }}") format("woff2"),
|
|
url("{{ `/fonts/Museo_Slab_500.woff` | absURL }}") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
</style>
|
|
<link rel="preload stylesheet" as="style" href="{{ `/styles/main.css` | absURL }}">
|
|
<link rel="stylesheet" as="style" href="{{ `/styles/reset.css` | absURL }}">
|
|
<link rel="stylesheet" as="style" href="{{ `/styles/root.css` | absURL }}">
|
|
{{ if not hugo.IsProduction }}
|
|
<link rel="stylesheet" as="style" href="/styles/development.css">
|
|
{{ end }}
|
|
{{ block "styles" . }}{{ end }}
|
|
{{ if gt (len .Section) 0 }}
|
|
{{ range .FirstSection.Resources.Match "*.css" }}
|
|
<link rel="stylesheet" as="style" href="{{ .Permalink }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ range .Resources.Match "*.css" }}
|
|
<link rel="stylesheet" as="style" href="{{ .Permalink }}">
|
|
{{ end }}
|
|
|
|
{{ block "scripts" . }}{{ end }}
|
|
|
|
<script src="{{ `scripts/site.js` | absURL }}"></script>
|
|
</html>
|