In the case where I have multiple collections (e.g. ebook-A
, ebook-B
, ebook-C
etc.) with each some ~300-400 entities, and I want to add a child page by the name page
that list all the entities in any given collection, resulting in a slug structure similar to:
example.com/ebook-A/page/
example.com/ebook-B/page/
example.com/ebook-C/page/
How would I go about doing that, as I can't (1.) link to a collection but only and entity (right?) and (2.) the collection name
is not identical with the slug, e.g. ebook-A
would automatically get following the naming convention (handler) ebook_A
and not ebook-A
.
Maybe I'm missing how this should be approached...