mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-08-31 00:57:33 -05:00
Just in case I ever want to use the footer tag anywhere else on the page. I'm not sure if I'm reading this right, but it sounds like it would make sense to put all the buttons at the bottom of the content pages as a footer as well. I will have to reconsider this again in the future.
41 lines
1.2 KiB
HTML
41 lines
1.2 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" . }}
|
|
|
|
<div class="main-container">
|
|
{{ if not .IsHome }}
|
|
{{ partial "breadcrumb.html" . }}
|
|
{{ end }}
|
|
|
|
<main id="main-content">
|
|
{{ block "main" . }}
|
|
THIS TEXT SHOULD NOT SHOW. YUZSIQGHE (that string is so I can grep for it)
|
|
{{ end }}
|
|
</main>
|
|
|
|
{{ if or .Site.Copyright .Site.Params.footer }}
|
|
<footer class="site-footer">
|
|
{{ with .Site.Copyright }}
|
|
{{ . | safeHTML }}
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.footer }}
|
|
{{ . | $.RenderString (dict "display" "block") }}
|
|
{{ end }}
|
|
</footer>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ block "post-body" . }}
|
|
{{/* currently this is only used for related posts */}}
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|