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
932 B
HTML
27 lines
932 B
HTML
<!doctype html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
{{ 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>
|
|
<article>
|
|
{{ block "main" . }}{{ end }}
|
|
</article>
|
|
</main>
|
|
{{ partial "paige-footer.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "paige-script.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 }}
|