forked from oyd/ozgurkon-theme-hugo
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.
30 lines
569 B
30 lines
569 B
5 years ago
|
<!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>
|