diff options
author | Benoit BERAUD <bberaud@pictet.com> | 2020-06-15 10:56:56 +0200 |
---|---|---|
committer | Benoit BERAUD <bberaud@pictet.com> | 2020-06-15 10:56:56 +0200 |
commit | d40f2d0e6c835b94f3d54a9e621bd6a2826cb5f5 (patch) | |
tree | c8b8a6c3895ecf460bc5d6363469313c36583fbb /layouts | |
parent | f94ef6fea6e897ab145bade9c63f30fd36ba3d0f (diff) |
Fix parameter name for headerTextColor
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/meta.html | 4 |
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 }} |