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

12 lines
443 B
HTML
Raw Normal View History

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