In frontmatter i have:
inlist: true
This code not work:
{{ range where .Data.Pages "Params.inlist" "true" }}
{{ range where .Data.Pages "Params.inlist" "=" "true" }}
{{ range where .Data.Pages "Params.inlist" "==" "true" }}
Working code:
{{ range where .Data.Pages "Params.inlist" true }}
<li>
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
</li>
{{ end }}
It seems to me that this syntax is not completely clear and it must be described in the documentation.