I have this in my config.toml:
[params]
customCSS = "css/mine.css"
subtitle = "..."
...
But the following condition always returns false
:
{{ if isset .Site.Params "customCSS" }}
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}{{ .Site.Params.customCSS }}" />
{{ end }}
If I print out .Site.Params.customCSS
, I see there is value that I specified in the config.toml
.
I am not sure what I am missing here.
Thanks for helping me out of tunnel vision