diff options
author | digitalcraftsman | 2017-09-07 21:41:16 +0200 |
---|---|---|
committer | digitalcraftsman | 2017-09-07 21:41:16 +0200 |
commit | 82832c1244f2d536c754efb98fbdb02b1844f4c7 (patch) | |
tree | ddeb1e83781a1f2793eb56c68d8a20e89fe4557c /layouts/_default/baseof.html | |
parent | 50fec3e32df7b3ef311377db55093fc87bccb446 (diff) | |
download | hyde-82832c1244f2d536c754efb98fbdb02b1844f4c7.tar.lz hyde-82832c1244f2d536c754efb98fbdb02b1844f4c7.tar.zst hyde-82832c1244f2d536c754efb98fbdb02b1844f4c7.zip |
Make use of the base template
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..a45cf37 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,8 @@ +{{ 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> + </body> +</html> \ No newline at end of file |