2021-10-11 21:35:16 -05:00
|
|
|
{{ partial "credit.html" }}
|
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>
|
2021-11-25 23:45:46 -06:00
|
|
|
<a id="top" name="top" aria-hidden="true"></a>
|
2021-11-22 20:49:11 -06:00
|
|
|
|
2021-10-02 16:22:52 -05:00
|
|
|
<div class="top">
|
2021-10-11 21:35:16 -05:00
|
|
|
{{ partial "top.html" . }}
|
2021-10-02 16:22:52 -05:00
|
|
|
</div>
|
2021-10-01 20:54:18 -05:00
|
|
|
|
2021-11-02 16:51:07 -05:00
|
|
|
{{ if not .IsHome }}
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ partial "breadcrumb.html" . }}
|
2021-11-02 16:51:07 -05:00
|
|
|
{{ end }}
|
|
|
|
|
2022-04-04 21:47:26 -05:00
|
|
|
<div class="main">
|
2021-11-22 20:49:11 -06:00
|
|
|
{{ block "main" . }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{ end }}
|
2021-09-25 20:52:01 -05:00
|
|
|
</div>
|
2021-10-17 20:17:12 -05:00
|
|
|
|
2022-04-09 19:26:52 -05:00
|
|
|
{{ if or .Site.Copyright .Site.Params.footer }}
|
2022-04-04 21:47:26 -05:00
|
|
|
<hr>
|
2021-11-22 02:21:15 -06:00
|
|
|
<footer>
|
|
|
|
<small>
|
2022-04-09 19:26:52 -05:00
|
|
|
{{ with .Site.Copyright }}
|
|
|
|
<p>{{ . | safeHTML }}</p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Site.Params.footer }}
|
|
|
|
<p>{{ . | markdownify }}</p>
|
|
|
|
{{ end }}
|
2021-11-22 02:21:15 -06:00
|
|
|
</small>
|
|
|
|
</footer>
|
2021-10-17 20:17:12 -05:00
|
|
|
{{ end }}
|
2021-11-22 20:49:11 -06:00
|
|
|
|
2021-11-23 19:06:26 -06:00
|
|
|
<a id="back-to-top" href="#top" aria-label="{{ i18n "aria_back_to_top_button" }}">
|
2021-11-22 20:49:11 -06:00
|
|
|
{{ partial "icon.html" "chevron-up" }}
|
|
|
|
</a>
|
2021-11-23 17:14:59 -06:00
|
|
|
<noscript>
|
|
|
|
<style>
|
|
|
|
#back-to-top {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</noscript>
|
2021-09-25 20:52:01 -05:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|