Check for Pagination

The only way is to call the $paginator in the head and your files in a similar way, using if/else.

For a given Page, it’s one of the options above. The .Paginator is static and cannot change once created.

If you call .Paginator or .Paginate multiple times on the same page, you should ensure all the calls are identical. Once either .Paginator or .Paginate is called while generating a page, its result is cached, and any subsequent similar call will reuse the cached result. This means that any such calls which do not match the first one will not behave as written.

(Remember that function arguments are eagerly evaluated, so a call like $paginator := cond x .Paginator (.Paginate .RegularPagesRecursive) is an example of what you should not do. Use if/else instead to ensure exactly one evaluation.)

1 Like