forked from markus/AMPERION_Webpage
71 lines
No EOL
1.1 KiB
HTML
71 lines
No EOL
1.1 KiB
HTML
<!--
|
|
|
|
PROJECT: Startup Hugo
|
|
VERSION: 1.0.0
|
|
AUTHOR: Gethugothemes
|
|
AUTHOR WEBSITE: https://gethugothemes.com
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ site.LanguageCode | default `en-US` }}" itemscope itemtype="http://schema.org/WebPage">
|
|
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
|
|
|
|
|
|
|
|
<!-- Meta Viewport Tag hinzufügen -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- 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 }}
|
|
|
|
|
|
<script defer src="/js/amp-grid.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |