2021-03-09 18:56:02 +05:30
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
|
|
{{ partial "head/head.html" . }}
|
|
|
|
{{ if eq .Kind "home" -}}
|
|
|
|
{{ .Scratch.Set "class" "home" -}}
|
|
|
|
{{ else if eq .Kind "404" -}}
|
|
|
|
{{ .Scratch.Set "class" "error404" -}}
|
|
|
|
{{ else if eq .Kind "page" -}}
|
|
|
|
{{ .Scratch.Set "class" .Type -}}
|
|
|
|
{{ .Scratch.Add "class" " single" -}}
|
|
|
|
{{ else -}}
|
|
|
|
{{ .Scratch.Set "class" .Type -}}
|
|
|
|
{{ .Scratch.Add "class" " list" -}}
|
|
|
|
{{ end -}}
|
|
|
|
<body class="{{ .Scratch.Get "class" }}">
|
2021-05-27 18:12:01 +05:30
|
|
|
|
|
|
|
|
2021-03-09 18:56:02 +05:30
|
|
|
{{ partial "header/header.html" . }}
|
2021-05-27 18:12:01 +05:30
|
|
|
|
2021-03-09 18:56:02 +05:30
|
|
|
<div class="wrap container" role="document">
|
|
|
|
<div class="content">
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ block "sidebar-prefooter" . }}{{ end }}
|
|
|
|
{{ block "sidebar-footer" . }}{{ end }}
|
|
|
|
{{ partial "footer/footer.html" . }}
|
|
|
|
{{ if and .IsHome .Site.Params.alert }}
|
|
|
|
{{ partial "footer/alert.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "footer/script-footer.html" . }}
|
|
|
|
</body>
|
2021-05-27 18:12:01 +05:30
|
|
|
</html>
|