This commit is contained in:
2025-12-02 16:34:42 +01:00
commit ae16f86d5e
203 changed files with 30853 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="{{ site.LanguageCode | default `en-US` }}"
lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}" itemscope itemtype=" http://schema.org/WebPage">
<head>
<!-- head (don't cache it) -->
{{ partial "essential/head.html" . }}
<!-- cache partial only in production -->
{{ if hugo.IsProduction }}
{{ partialCached "essential/style.html" . }}
{{ else }}
{{ partial "essential/style.html" . }}
{{ end }}
</head>
<body>
{{ partial "page-transition.html" . }}
<!-- cache partial only in production -->
{{ if hugo.IsProduction }}
{{ partialCached "preloader.html" . }}
{{ else }}
{{ partial "preloader.html" . }}
{{ end }}
{{ if not .IsHome }}
{{ partial "components/page-header.html" . }}
{{ end }}
<!-- header (don't cache it) -->
{{ partial "essential/header.html" . }}
<main>
{{ block "main" . }}{{ end }}
</main>
<!-- cache partial only in production -->
{{ if hugo.IsProduction }}
{{ partialCached "components/subscription.html" . }}
{{ partialCached "essential/footer.html" . }}
{{ partialCached "essential/script.html" . }}
{{ else }}
{{ partial "components/subscription.html" . }}
{{ partial "essential/footer.html" . }}
{{ partial "essential/script.html" . }}
{{ end }}
</body>
</html>