mycelia.blog/themes/terminal/layouts/_default/baseof.html

27 lines
805 B
HTML
Raw Permalink Normal View History

2023-06-12 03:41:16 +00:00
<!DOCTYPE html>
<html lang="{{ $.Site.Language }}">
2024-07-24 19:21:08 -04:00
<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>
2023-06-12 03:41:16 +00:00
{{ end }}
2024-07-24 19:21:08 -04:00
</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" . }}
2023-06-12 03:41:16 +00:00
2024-07-24 19:21:08 -04:00
<div class="content">{{ block "main" . }} {{ end }}</div>
2023-06-12 03:41:16 +00:00
2024-07-24 19:21:08 -04:00
{{ block "footer" . }} {{ partial "footer.html" . }} {{ end }}
</div>
</body>
2023-06-12 03:41:16 +00:00
</html>