You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
ozgurkon-theme-hugo/layouts/_default/baseof.html

29 lines
569 B

<!DOCTYPE html>
<html lang="{{ $.Site.LanguageCode | default " en" }}">
{{ partial "head.html" . }}
<body class="{{ .Kind }} {{ anchorize .URL }} {{ .Section }}">
{{ readFile "themes/devfest-theme-hugo/static/icons.svg" | safeHTML }}
{{ block "header" . }}
{{ partial "header.html" . }}
{{ end }}
<main>
{{ block "main" . }}
<!-- Missing main block -->
{{ end }}
</main>
{{ block "footer.html" . }}
{{ partial "footer.html" . }}
{{ end }}
<script src="/theme.js?v=2" async></script>
{{ block "scripts" . }}
<!-- No extra scripts -->
{{ end }}
</body>
</html>