mycelia.blog/themes/terminal/layouts/_default/baseof.html
brooke 6d1de9d325
All checks were successful
Hugo / build (push) Successful in 9s
update
2024-07-24 19:21:08 -04:00

26 lines
805 B
HTML
Executable file

<!DOCTYPE html>
<html lang="{{ $.Site.Language }}">
<head>
{{ partial "head.html" . }}
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{ block "title" . }}
<title>
{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }} :: {{
$.Site.Title }}{{ end }}
</title>
{{ end }}
</head>
<body class="pink">
{{ $container := cond ($.Site.Params.FullWidthTheme | default false)
"container full" (cond ($.Site.Params.CenterTheme | default false)
"container center" "container") }}
<div class="container center headings--one-size">
{{ partial "header.html" . }}
<div class="content">{{ block "main" . }} {{ end }}</div>
{{ block "footer" . }} {{ partial "footer.html" . }} {{ end }}
</div>
</body>
</html>