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

11 lines
331 B
HTML
Raw Normal View History

2017-09-07 19:41:16 +00:00
{{ partial "head.html" . }}
<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
{{ partial "sidebar.html" . }}
<div class="content container">
{{ block "main" . }}{{ end }}
2017-09-07 19:41:16 +00:00
</div>
<div class="footer">
{{ block "footer" . }}{{ end }}
</div>
2017-09-07 19:41:16 +00:00
</body>
</html>