aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorMantas Vilčinskas <11616378+mistermantas@users.noreply.github.com>2020-06-15 17:24:55 +0300
committerGitHub <noreply@github.com>2020-06-15 17:24:55 +0300
commit51c325e233fdb6b79126460172bec148c63e16e3 (patch)
treec8b8a6c3895ecf460bc5d6363469313c36583fbb /layouts
parentf94ef6fea6e897ab145bade9c63f30fd36ba3d0f (diff)
parentd40f2d0e6c835b94f3d54a9e621bd6a2826cb5f5 (diff)
Bugfix #114 from benoit74/issue_113_headertextcolor
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/meta.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/meta.html b/layouts/partials/meta.html
index 02af661..d81b6b5 100644
--- a/layouts/partials/meta.html
+++ b/layouts/partials/meta.html
@@ -166,9 +166,9 @@
font-variant: small-caps;
}
- {{ if eq .Params.headerTextColor "black" }}
+ {{ if eq .Site.Params.headerTextColor "black" }}
.header a h1 { color: #000; }
- {{ else if eq .Params.headerTextColor "white" }}
+ {{ else if eq .Site.Params.headerTextColor "white" }}
.header a h1 { color: #fff; }
{{ end }}