Hi - I looked in the docs and in the forum here for an answer, but, cannot seem to come up with anything, so I’m going to ask. I see how I can specify one section (edit: in my home page index.html template), like this:
{{ range where .Paginator.Pages "Section" "aaa" }}
{{ .Render "summary" }}
{{ end }}
But if I have two sections I would like shown via this range statement, aaa and bbb, then how can I write the where clause to show that?
I tried things like:
{{ range where .Paginator.Pages "Section" "aaa" or "bbb" }}
{{ range where .Paginator.Pages "Section" ("aaa" or "bbb") }}
{{ range (where .Paginator.Pages "Section" "aaa") or (where .Paginator.Pages "Section" "bbb" }}
… but no joy. How must this be written?