11 lines
390 B
HTML
11 lines
390 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
{{ block "header" . }}{{ end }}
|
|
<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
|
|
{{ partial "sidebar.html" . }}
|
|
<div class="content container">
|
|
{{ block "content" . }}{{ end }}
|
|
</div>
|
|
{{ block "footer" . }}{{ end }}
|
|
</body>
|
|
</html>
|