Files
blog/layouts/_default/baseof.html
Hannes Körber 7411bfccbd
Some checks failed
continuous-integration/drone/push Build is failing
Initial commit.
2023-10-12 17:32:50 +02:00

21 lines
662 B
HTML

<!DOCTYPE html>
<html lang="{{ $.Site.LanguageCode | default "en" }}">
{{ partial "html-head.html" . }}
<body class="has-navbar-fixed-top">
<div id="footer-fix-body-wrapper">
{{ block "header" . }}{{ partial "header.html" .}}{{ end }}
<main>
<div class="columns is-gapless is-centered is-mobile">
<div class="column is-12 is-11-widescreen is-10-fullhd" style="max-width:80em;">
<div class="content">
{{ block "content" . }}{{ end }}
</div>
</div>
</div>
</main>
</div>
{{ block "footer" . }}{{ partial "site-footer.html" . }}{{ end }}
</body>
</html>