I have pages at the root of content directory with the type = "post" so I wanted to loop through to display them and I did this:
{{ range where .Site.Pages "Type" "page" }}
{{ .LinkTitle }}
{{ end }}
which lists my pages but it also lists all my tags making it more than I expect. How can I make it just those content pages where I explicitly set a type taxonomy on
That was worse. Showed all my actual blog post. But seeing that made me think of something else. The few pages I’m targeting have layout = "page" so I changed Type to Layout and it gave me what I wanted.