I am breaking my head over this right now. I am writing a really long article about some technical stuff and I just want to have multiple pages. Sure, I could use multiple articles basically, but my front page shows the latest articles and I don’t want 5 entries of 1 topic in a category.
I have tried to use a leaf bundle for that with this structure:
my-post
--- index.md (first page)
--- page-2.md
However, linking to page 2 proves difficult as the page somehow does not exist:
[next part]({{< relref "/blog/my-post/page-2.md" >}})
ERROR [en] REF_NOT_FOUND:
If I rename index.md to page-1.md it builds, but only page-2.md gets shown on the front page as the latest article.
Is there a better solution to this?