bobatheme/layouts/_default/baseof.html

41 lines
1.1 KiB
HTML
Raw Normal View History

2023-02-28 17:54:22 -06:00
{{ i18n "credit_comment" | safeHTML }}
2021-09-25 20:52:01 -05:00
<!DOCTYPE html>
<html lang="{{ .Language.Lang }}">
2021-11-20 18:30:26 -06:00
{{ partial "head.html" . }}
2021-09-25 20:52:01 -05:00
<body>
<a id="skip-to-main" href="#main-content">Skip to main content</a>
2021-11-22 20:49:11 -06:00
{{ partial "top.html" . }}
<div class="main-container">
2023-10-15 01:22:04 -05:00
{{ if not .IsHome }}
{{ partial "breadcrumb.html" . }}
2021-11-22 20:49:11 -06:00
{{ end }}
2021-10-17 20:17:12 -05:00
<main id="main-content">
2023-10-15 01:22:04 -05:00
{{ block "main" . }}
THIS TEXT SHOULD NOT SHOW. YUZSIQGHE (that string is so I can grep for it)
{{ end }}
2023-10-15 01:22:04 -05:00
</main>
</div>
2023-10-15 01:22:04 -05:00
{{ block "post-body" . }}
{{/* currently this is only used for related posts */}}
{{ end }}
{{ if or .Site.Copyright .Site.Params.footer }}
<footer>
{{ with .Site.Copyright }}
<p>{{ . | safeHTML }}</p>
{{ end }}
2023-10-15 01:22:04 -05:00
{{ with .Site.Params.footer }}
{{ . | $.RenderString (dict "display" "block") }}
{{ end }}
</footer>
{{ end }}
2021-09-25 20:52:01 -05:00
</body>
</html>