I have the following shortcode:
{{ range (where .Site.RegularPages "Section" "news") }}
<strong>Params:</strong> {{ .Params }} <br>
<strong>Content:</strong> {{ .Content }}
{{ end }}
{{ .Params }} is always displayed, but {{ .Content }} does not! Including when building site.
Any idea what’s wrong?