26 lines
805 B
HTML
Executable file
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>
|