bobatheme/layouts/_default/baseof.html

50 lines
1.3 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="top" aria-hidden="true"></a>
2021-11-22 20:49:11 -06:00
{{ partial "top.html" . }}
2023-10-15 01:22:04 -05:00
<div class="center-body">
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
2023-10-15 01:22:04 -05:00
<main>
{{ 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>
{{ if or .Site.Copyright .Site.Params.footer }}
<footer>
{{ with .Site.Copyright }}
<p>{{ . | safeHTML }}</p>
{{ end }}
{{ with .Site.Params.footer }}
{{ . | $.RenderString (dict "display" "block") }}
{{ end }}
</footer>
{{ end }}
2023-10-15 01:22:04 -05:00
<a id="back-to-top" href="#top" aria-label="{{ i18n "aria_back_to_top_button" }}">
{{ partial "icon.html" "chevron-up" }}
</a>
<noscript>
<style>
#back-to-top {
display: block;
}
</style>
</noscript>
</div>
2021-09-25 20:52:01 -05:00
</body>
</html>