49 lines
1.1 KiB
HTML
49 lines
1.1 KiB
HTML
<!--
|
|
PROJECT: Startup Hugo
|
|
VERSION: 1.0.0
|
|
AUTHOR: Gethugothemes
|
|
AUTHOR WEBSITE: https://gethugothemes.com
|
|
-->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ site.LanguageCode | default `de-AT` }}" itemscope itemtype="http://schema.org/WebPage">
|
|
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
<!-- WICHTIG: kein weiterer <meta name="viewport"> hier; ist bereits in head.html enthalten -->
|
|
|
|
<!-- cache partial only in production -->
|
|
{{ if hugo.IsProduction }}
|
|
{{ partialCached "style.html" . }}
|
|
{{ else }}
|
|
{{ partial "style.html" . }}
|
|
{{ end }}
|
|
</head>
|
|
|
|
<body>
|
|
<!-- cache partial only in production -->
|
|
{{ partial "header.html" . }}
|
|
{{ if hugo.IsProduction }}
|
|
{{ partialCached "preloader.html" . }}
|
|
{{ else }}
|
|
{{ partial "preloader.html" . }}
|
|
{{ end }}
|
|
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
<!-- cache partial only in production -->
|
|
{{ if hugo.IsProduction }}
|
|
{{ partialCached "footer.html" . }}
|
|
{{ partialCached "script.html" . }}
|
|
{{ else }}
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "script.html" . }}
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|