Hello. I have a custom article with parameter
## Meta
description = "Desc"
title = "Title"
## Date
date = "2020-07-28T00:00:00+03:00"
## Short data
hide_public = true
+++
And I have the code in Section
{{ $paginator := .Paginate (where (where .Pages "Type" "blog").ByDate.Reverse .Params.hide_public "==" true) }}
{{ $p := $paginator.PageNumber }}
{{ $n := $paginator.NumberOfElements }}
{{ range $k, $v := $paginator.Pages }}
{{ if lt $k 4 }}
{{ .Render "blog_section.li" }}
{{ end }}
{{ end }}
Why the condition
Params.hide_public “==” true
doesn’t work?
