56 lines
1.5 KiB
HTML
Executable file
56 lines
1.5 KiB
HTML
Executable file
<!doctype html>
|
|
<html
|
|
itemscope
|
|
class="{{- if not site.Params.theme_switcher -}}
|
|
{{- site.Params.theme_default -}}
|
|
{{- end -}}"
|
|
lang="{{ site.LanguageCode | default `en-US` }}"
|
|
itemtype="http://schema.org/WebPage">
|
|
<head>
|
|
<!-- head (don't cache it) -->
|
|
{{ partial "essentials/head.html" . }}
|
|
|
|
|
|
<!-- style (always cache it) -->
|
|
{{ partialCached "essentials/style.html" . }}
|
|
{{ if not hugo.IsProduction }}
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
|
|
{{ end }}
|
|
</head>
|
|
|
|
<body class="{{ if not hugo.IsProduction }}env-development{{ end }}">
|
|
<!-- cache partial only in production -->
|
|
{{ if hugo.IsProduction }}
|
|
{{ partialCached "preloader.html" . }}
|
|
{{ partialCached "gtm-noscript.html" . }}
|
|
{{ else }}
|
|
{{ partial "preloader.html" . }}
|
|
|
|
|
|
<!-- tailwind size indicator -->
|
|
{{ partial "components/tw-size-indicator.html" . }}
|
|
{{ partial "testPartial" . }}
|
|
{{ end }}
|
|
|
|
|
|
<!-- header (don't cache it) -->
|
|
{{ partial "essentials/header.html" . }}
|
|
{{ partial "search-modal.html" (dict "Context" . ) }}
|
|
|
|
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
<!-- cache partial only in production -->
|
|
{{ if hugo.IsProduction }}
|
|
{{ partialCached "essentials/footer.html" . }}
|
|
{{ partialCached "essentials/script.html" . }}
|
|
{{ else }}
|
|
{{ partial "essentials/footer.html" . }}
|
|
{{ partial "essentials/script.html" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|