2023-02-28 17:54:22 -06:00
|
|
|
{{ i18n "credit_comment" | safeHTML }}
|
2021-09-25 20:52:01 -05:00
|
|
|
<!DOCTYPE html>
|
2021-10-11 18:24:14 -05:00
|
|
|
<html lang="{{ .Language.Lang }}">
|
2021-11-20 18:30:26 -06:00
|
|
|
{{ partial "head.html" . }}
|
2021-09-25 20:52:01 -05:00
|
|
|
|
|
|
|
<body>
|
2023-04-06 00:25:08 -05:00
|
|
|
<a id="top" aria-hidden="true"></a>
|
2023-10-21 20:21:26 -05:00
|
|
|
<a id="skip-to-main" href="#main-content">Skip to main content</a>
|
2021-11-22 20:49:11 -06:00
|
|
|
|
2023-10-21 19:44:02 -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>
|
2021-10-01 20:54:18 -05:00
|
|
|
|
2023-10-21 19:44:02 -05:00
|
|
|
{{ partial "top.html" . }}
|
2021-11-02 16:51:07 -05:00
|
|
|
|
2023-10-21 19:44:02 -05:00
|
|
|
<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
|
|
|
|
2023-10-21 20:21:26 -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)
|
2023-04-06 00:18:18 -05:00
|
|
|
{{ end }}
|
2023-10-15 01:22:04 -05:00
|
|
|
</main>
|
2023-10-21 19:44:02 -05:00
|
|
|
</div>
|
2023-10-15 01:22:04 -05:00
|
|
|
|
2023-10-21 19:44:02 -05:00
|
|
|
{{ block "post-body" . }}
|
|
|
|
{{/* currently this is only used for related posts */}}
|
|
|
|
{{ end }}
|
2023-04-06 00:18:18 -05:00
|
|
|
|
2023-10-21 19:44:02 -05:00
|
|
|
{{ if or .Site.Copyright .Site.Params.footer }}
|
|
|
|
<footer>
|
|
|
|
{{ with .Site.Copyright }}
|
|
|
|
<p>{{ . | safeHTML }}</p>
|
|
|
|
{{ end }}
|
2023-10-15 01:22:04 -05:00
|
|
|
|
2023-10-21 19:44:02 -05:00
|
|
|
{{ with .Site.Params.footer }}
|
|
|
|
{{ . | $.RenderString (dict "display" "block") }}
|
|
|
|
{{ end }}
|
|
|
|
</footer>
|
|
|
|
{{ end }}
|
2021-09-25 20:52:01 -05:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|