19 lines
495 B
HTML
19 lines
495 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
|
|
{{- block "head" . -}}{{ end }}
|
|
</head>
|
|
<body>
|
|
<div class="footer-push">
|
|
{{ if or (not (isset .Params "with_header")) .Params.with_header }}
|
|
{{ partial "header" . }}
|
|
{{ end }}
|
|
{{ block "main" . }}{{ end }}
|
|
</div>
|
|
{{ if or (not (isset .Params "with_footer")) .Params.with_footer }}
|
|
{{ partial "footer" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|