hugo-test-site/layouts/_default/baseof.html

26 lines
865 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="{{ or site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
<head>
{{ partial "base/head.html" . }}
{{ block "head_css" . }}{{ end }}
</head>
<body>
<header class="site-header">
{{ partial "site/header.html" . }}
</header>
<div class="body__container">
{{ block "main" . }}{{ end }}
<footer class="site-footer">
{{ partial "site/footer.html" . }}
</footer>
</div>
<command-bar></command-bar>
{{ partial "commandbar/template.html" . }}
{{ partial "commandbar/script.html" }}
{{ partial "resource_builders/script.html" (dict "resource" "js/commands.js") }}
{{ if .HasShortcode "railroad-diagram" }}
{{ partial "resource_builders/script.html" (dict "resource" "js/railroad/railroad.js")}}
{{ end }}
</body>
</html>