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

16 lines
658 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 }}
{{ if and (not .Site.BuildDrafts) (.Site.GoogleAnalytics) -}}
{{ "<!-- Google Analytics -->" | safeHTML }}
2018-01-24 09:42:50 +00:00
{{ template "_internal/google_analytics_async.html" . }}
2018-05-29 18:04:54 +00:00
{{- end }}
2018-01-24 09:42:50 +00:00
</body>
</html>