You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!doctype html>
|
|
{{ $rtl := eq .Language.LanguageDirection "rtl" }}
|
|
{{ $lang := .Site.LanguageCode | default .Site.Language.Lang }}
|
|
<html{{ if eq .Site.Params.paige.color_scheme `dark` }} data-bs-theme="dark"{{ end }}{{ if $rtl }} dir="rtl"{{ end }}{{ with $lang }} lang="{{ . }}"{{ end }}>
|
|
{{ partial "paige/head.html" . }}
|
|
<body class="d-flex flex-column">
|
|
<div class="container flex-fill">
|
|
<div class="row">
|
|
<div class="col">
|
|
{{ partial "paige/header.html" . }}
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
{{ partial "paige/footer.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "paige/scripts.html" . }}
|
|
{{ if templates.Exists "partials/paige-body-last.html" }}
|
|
{{ partial "paige/body-last.html" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|
|
{{ if not .Site.Params.paige.hide_theme_comment }}
|
|
{{ printf "<!-- Paige theme from https://github.com/willfaught/paige -->" | safeHTML }}
|
|
{{ end }}
|