redstrate.com/themes/red/layouts/_default/baseof.html
2025-01-03 10:34:20 -05:00

29 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
{{- partial "head.html" . -}}
{{- block "head" . }}{{- end }}
</head>
<body>
<header>{{- partial "header.html" . -}}</header>
<div id="content">
<aside>{{- partial "sidebar.html" . -}}</aside>
<article>
<div class="breadcrumbs">
{{ partial "breadcrumbs.html" . }}
</div>
{{- block "main" . }}{{- end }}
</article>
{{ if .Params.show_detail_pane }}
<aside id="detail-pane">{{- block "details" . }}{{- end }}</aside>
{{ end }}
</div>
<footer>{{- partial "footer.html" . -}}</footer>
{{ $site := resources.Get "js/site.js" }}
{{ if hugo.IsProduction }}
{{ $site = $site | minify | fingerprint | resources.PostProcess }}
{{ end }}
<script src="{{ $site.RelPermalink }}" integrity="{{ $site.Data.Integrity }}"></script>
</body>
</html>