How do I check for false boolean values from front matter?

{{ if eq .Params.customtitle false }}
<! –– parameter set to false ––>
{{ else }}
<! –– parameter not set to false ––>
{{ end }}

The above should work. If not then you need to share your project.

Also as noted above parameters set in the project’s config are called with .Site.Params.name meanwhile parameters set in content files front are called with .Params.name

1 Like