Hugo-theme-stack/layouts/_default/baseof.html

15 lines
631 B
HTML
Raw Normal View History

2020-08-22 07:20:08 -04:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{- partial "head/head.html" . -}}
<body class="{{ block `body-class` . }}{{ end }}">
2020-09-23 07:20:18 -04:00
<div class="container flex on-phone--column align-items--flex-start {{ if .Site.Params.widgets.enabled }}extended{{ else }}compact{{ end }} {{ block `container-class` . }}{{end}}">
{{ partial "sidebar/left.html" . }}
<main class="main full-width">
{{- block "main" . }}{{- end }}
</main>
{{- block "right-sidebar" . -}}{{ end }}
2020-08-22 07:20:08 -04:00
</div>
{{ partial "footer/include.html" . }}
2020-08-22 07:20:08 -04:00
</body>
</html>