2019-01-28 03:11:02 +03:00
|
|
|
<!DOCTYPE html>
|
2019-01-29 13:18:14 +03:00
|
|
|
<html lang="{{ $.Site.Language }}">
|
2019-01-28 03:11:02 +03:00
|
|
|
<head>
|
|
|
|
{{ block "title" . }}
|
|
|
|
<title>{{ if .IsHome }}{{ $.Site.Title }}{{ with $.Site.Params.Subtitle }} — {{ . }}{{ end }}{{ else }}{{ .Title }} :: {{ $.Site.Title }}{{ with $.Site.Params.Subtitle }} — {{ . }}{{ end }}{{ end }}</title>
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
</head>
|
|
|
|
<body class="">
|
2019-02-26 11:30:10 +03:00
|
|
|
{{ $container := cond $.Site.Params.FullWidthTheme "container full" (cond $.Site.Params.CenterTheme "container center" "container") }}
|
|
|
|
|
|
|
|
<div class="{{- $container -}}">
|
2019-02-03 18:00:13 +03:00
|
|
|
|
2019-01-28 03:11:02 +03:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
{{ block "main" . }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ block "footer" . }}
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|