Panel: Show subpages at the panel homepage

Hello – is there a way to display subpages of a specific page at the panel homepage?
The starterkit has something similar, that if you open the panel, you can see all the photography subpages in the card layout, but I couldn’t get behind all the code.

This way all the subpages are perfectly sorted, while the client has easy access by just logging in and seeing only what matters, without clicking trough folders.

Erik

If i understood the issue correctly, you can do that with pages

site.yml

sections:
    myProjects:
        type: pages
        headline: Projects
        # This is important for select parent page
        parent: site.find("projects")

If you want to use pagetable plugin, you need parent property again:

sections:
    myProjects:
        headline: My Projects
        type: pagetable
        parent: site.find("projects")
1 Like