redstrate.com/themes/red/layouts/_default/baseof.html

24 lines
840 B
HTML
Raw Normal View History

2022-08-02 12:17:07 -04:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
2022-08-02 12:17:07 -04:00
{{- partial "head.html" . -}}
<body>
<header>{{- partial "header.html" . -}}</header>
<div id="content">
<aside>{{- partial "sidebar.html" . -}}</aside>
2022-12-28 11:09:13 -05:00
<article>
<div class="breadcrumbs">
{{ partial "breadcrumbs.html" . }}
</div>
{{- block "main" . }}{{- end }}
</article>
</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>
2022-08-02 12:17:07 -04:00
</body>
</html>