How to list posts from a designated contents sub-folder

Might be a bit late, but hey…

If you only want to display pages which are in a defined section (e.g. posts), you can use range where:

{{ range where .Pages "Section" "posts" }}
{{ .Title }}
{{ end }}
1 Like