Make background configurable

This commit is contained in:
Joseph Hutchinson
2018-06-08 13:35:58 -04:00
parent 47382b7cf3
commit 18b30658b1

View File

@@ -12,4 +12,11 @@
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/xcode.css" />
<link rel="stylesheet" href="/css/latolatinfonts.css" />
{{ if isset $.Site.Params "bgimg" }}
<style>
body {
background: #ecedef url("{{ $.Site.Params.bgimg }}") repeat;
}
</style>
{{ end }}
</head>