Hi,
I use this paginate function
{{ range (.Paginate ( where .Site.RegularPages "Section" "in" (slice "builds" "writing")).ByDate.Reverse).Pages }}
and i see it displays only 10 results, which is the default, i would like to increase it, and i saw here:
that you can use an argument like in this example:
{{ range (.Paginate ( first 50 .Pages.ByTitle )).Pages }}
i’m not sure where to insert the “first 50” in my function, i tried but always get errors, any hints how to do it?