mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-08-10 09:21:36 -05:00
- Use a variable to make sure that top bar and body margins stay equal - Lower side margins to 16px so that the gap in navbar-items fits right
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" {{ if .IsPage }}data-pagefind-body{{ end }}>
|
|
{{ 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>
|
|
{{ 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>
|