mirror of
https://github.com/acaloiaro/garbagespeak.com
synced 2026-07-21 10:12:19 +00:00
28 lines
882 B
HTML
28 lines
882 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ $.Site.Language }}">
|
|
<head>
|
|
{{ block "title" . }}
|
|
<title>{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }} :: {{ $.Site.Title }}{{ end }}</title>
|
|
{{ end }}
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
<body class="{{- ( or .Params.color $.Site.Params.ThemeColor ) -}}" hx-select-oob="#alert" hx-ext="remove-me"
|
|
hx-boost="true">
|
|
{{ $container := cond ($.Site.Params.FullWidthTheme | default false) "container full" (cond ($.Site.Params.CenterTheme | default false) "container center" "container") }}
|
|
|
|
<div class="{{- $container -}}{{- cond ($.Site.Params.oneHeadingSize | default true) " headings--one-size" "" }}">
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
<div id="content" class="content">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ block "footer" . }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|