hugo-theme-introduction/layouts/_default/baseof.html

44 lines
1.4 KiB
HTML
Raw Normal View History

2018-07-01 08:09:29 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ block "head" . }}
{{ partial "head/metadata.html" . }}
{{ partial "head/plausible.html" . }}
2018-07-01 08:22:28 +00:00
{{ partial "head/openGraph.html" . }}
2018-07-01 08:09:29 +00:00
{{ partial "head/favicons.html" . }}
{{ partial "head/css.html" . }}
{{ end }}
2018-07-06 12:27:34 +00:00
<!-- Include page specific css -->
{{ block "customCSS" . }}
{{ end }}
2018-07-01 08:09:29 +00:00
</head>
<body>
2018-08-01 08:09:14 +00:00
<section id="top" class="section">
2018-07-01 08:09:29 +00:00
<!-- Begin Title -->
<div class="container hero {{ if .Site.Params.fadeIn | default true }} fade-in one {{ end }}">
{{ block "title" . }}
2020-05-31 18:12:41 +00:00
<h1 class="bold-title is-1">{{ .Title | markdownify }}</h1>
2018-07-01 08:09:29 +00:00
{{ 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>
2018-07-10 07:23:19 +00:00
</section>
2018-07-01 08:09:29 +00:00
{{ block "js-include" . }}
{{ partial "footer/scripts.html" . }}
{{ end }}
2018-12-18 12:57:31 +00:00
<!-- Include page specific scripts -->
2018-07-06 12:27:34 +00:00
{{ block "customScripts" . }}
{{ end }}
2018-07-01 08:09:29 +00:00
</body>
</html>