hugo-theme-hyde-hyde/layouts/_default/baseof.html

12 lines
443 B
HTML
Raw Normal View History

2018-01-24 16:42:50 +07:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
2018-02-03 15:35:10 +07:00
{{ block "header" . -}}{{- end }}
2018-07-10 11:41:30 +10:00
<body {{- if .Site.Params.themeColor }}class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{ end }}"{{end}}>
{{ partial "sidebar.html" . -}}
2018-01-24 16:42:50 +07:00
<div class="content container">
2018-07-10 11:41:30 +10:00
{{ block "content" . -}}{{- end }}
2018-01-24 16:42:50 +07:00
</div>
2018-07-10 11:41:30 +10:00
{{ block "footer" . -}}{{- end }}
2018-01-24 16:42:50 +07:00
</body>
</html>