hugo-theme-hyde-hyde/layouts/_default/baseof.html
2018-01-22 10:03:55 +07:00

11 lines
No EOL
331 B
HTML

{{ 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 }}
</div>
<div class="footer">
{{ block "footer" . }}{{ end }}
</div>
</body>
</html>