portfoligor/layouts/_default/baseof.html

18 lines
540 B
HTML

<!DOCTYPE html>
<html lang="{{ .Language.Lang }}" prefix="og: http://ogp.me/ns#">
{{ partial "head.html" . }}
<body>
{{- partial "header.html" . -}}
<main aria-role="main" class="container"
itemscope itemtype="https://schema.org/Person">
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</body>
<!-- local_include sets the presence of the script for the on/off button
for the live player. -->
{{ if .Params.local_include }}
<script src="/js/on_fiber.js"></script>
{{ end }}
</html>