hugo-theme-fha/layouts/_default/baseof.html

33 lines
1.0 KiB
HTML
Raw Normal View History

2024-09-01 14:27:23 +00:00
<!DOCTYPE html>
2024-10-14 19:54:59 +00:00
<html lang="en" data-bs-theme="dark">
{{- partial "head.html" . -}}
<body class="mb-5">
{{- partial "svg.html" . -}}
{{- partial "nav.html" . -}}
<div class="container-xxl">
{{ if eq .Page.Section "cv" }}
<div class="row">
{{ block "main" . }}{{ end }}
</div>
{{ else }}
<div class="row">
<div class="col-lg-9 mt-4">
<article>
{{ block "main" . }}{{ end }}
</article>
</div>
<div class="col-lg-3 mt-4">
{{ partial "cloudtag.html" . }}
</div>
</div>
{{ end }}
2024-09-01 14:27:23 +00:00
</div>
2024-10-14 19:54:59 +00:00
{{ partialCached "footer.html" . }}
{{ if .Page.Store.Get "hasMermaid" }}
<script src="/js/mermaid.min.js"></script>
<script>
mermaid.initialize({ startOnLoad: true });
</script>
2024-09-01 14:27:23 +00:00
{{ end }}
2024-10-14 19:54:59 +00:00
</body>
2024-09-01 14:27:23 +00:00
</html>