Hi,
I am trying to create a list on my website homepage, that lists pages from 2 sections. I have this working, but unfortunately I cant work out how to hide the section titles.
here is my code:
{{ $paginator := .Paginate (where .Site.Pages “Type” “in” “post, newsletter”) }}
{{ range $paginator.Pages.ByPublishDate.Reverse }}
{{ partial “list-stub.html” . }}
{{ end }}
but in the list, I get two sections listed posts/ and newsletter, rather than just displaying the markdown file links underneath these sections.
Hope someone can help!
Thanks!