hugo-theme-introduction/layouts/_default/baseof.html
Victoria Drake 2932037152 Update docs and config.toml
- Add instructions for Contact section clock and Plausible
- Update README and Theme Features post

Close #273
2020-12-31 07:56:23 -05:00

43 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ block "head" . }}
{{ partial "head/metadata.html" . }}
{{ partial "head/plausible.html" . }}
{{ partial "head/openGraph.html" . }}
{{ partial "head/favicons.html" . }}
{{ partial "head/css.html" . }}
{{ end }}
<!-- Include page specific css -->
{{ block "customCSS" . }}
{{ end }}
</head>
<body>
<section id="top" class="section">
<!-- Begin Title -->
<div class="container hero {{ if .Site.Params.fadeIn | default true }} fade-in one {{ end }}">
{{ block "title" . }}
<h1 class="bold-title is-1">{{ .Title | markdownify }}</h1>
{{ end }}
</div>
<!-- End Title -->
<div class="section {{ if .Site.Params.fadeIn | default true }} fade-in two {{ end }}">
{{ partial "nav.html" . }}
{{ block "main" . }}
{{ end }}
{{ block "footer" . }}
{{ partial "top-icon-with-hr.html" . }}
{{ partial "footer/text.html" . }}
{{ end }}
</div>
</section>
{{ block "js-include" . }}
{{ partial "footer/scripts.html" . }}
{{ end }}
<!-- Include page specific scripts -->
{{ block "customScripts" . }}
{{ end }}
</body>
</html>