portfolios_pgp/layouts/_default/baseof.html
2021-12-31 12:44:26 +01:00

26 lines
609 B
HTML

<!DOCTYPE html>
<html lang="{{ site.LanguageCode | default "en-us" }}">
{{ partial "site_head.html" . }}
<body id="top" data-spy="scroll" data-target="{{ if or .IsHome (eq .Type "widget_page") }}#navbar-main{{else}}#TableOfContents{{end}}" data-offset="71" {{ if not (.Scratch.Get "light") }}class="dark"{{end}}>
{{ partial "search" . }}
{{ partial "navbar.html" . }}
{{ block "main" . }}{{ end }}
{{ partial "site_js.html" . }}
{{ if ne .Type "docs" }}
<div class="container">
{{ partial "site_footer.html" . }}
</div>
{{ end }}
{{ partial "citation.html" . }}
</body>
</html>