mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-07-02 18:17:30 -05:00
In preparation for adding Pagefind search support to bbaovanc.com. Those templates will just go in the bbaovanc.com tree instead.
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
{{ i18n "credit_comment" | safeHTML }}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ .Language.Lang }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
<a id="skip-to-main" href="#main-content">Skip to main content</a>
|
|
|
|
{{ partial "top.html" . }}
|
|
|
|
{{ if hugo.IsServer -}}
|
|
<div style="position: fixed; bottom: 25px; right: 25px;">
|
|
{{ templates.Current.Name }}
|
|
</div>
|
|
{{ end -}}
|
|
|
|
<div class="main-container">
|
|
{{ if not .IsHome }}
|
|
{{ partial "breadcrumb.html" . }}
|
|
{{ end }}
|
|
|
|
<main id="main-content" data-pagefind-body>
|
|
{{ block "main" . }}
|
|
THIS TEXT SHOULD NOT SHOW. YUZSIQGHE (that string is so I can grep for it)
|
|
{{ end }}
|
|
</main>
|
|
</div>
|
|
|
|
{{ block "post-body" . }}
|
|
{{/* currently this is only used for related posts */}}
|
|
{{ end }}
|
|
|
|
{{ if or .Site.Copyright .Site.Params.footer }}
|
|
<footer>
|
|
{{ with .Site.Copyright }}
|
|
{{ . | safeHTML }}
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.footer }}
|
|
{{ . | $.RenderString (dict "display" "block") }}
|
|
{{ end }}
|
|
</footer>
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|