Display all info fields in single template

I’m creating a user guide for a Kirby site, and am adding user tips to almost every form block and nested field structure. I just realised it would be neat to display a single page (like a cheatsheet) containing all those tips together with the label for that field group, and perhaps also the label for the parent field group if it exists.

Is there a simple method for looping through all snippets and displaying the info field from each, together with labels. Nice to have would be grouping them by fieldset.

Thanks!

You have access to everything in the blueprint via the $page->blueprint() method:

https://getkirby.com/docs/reference/objects/page/blueprint.

This method is also available for the $site, $user and $file objects.

There’s a cookbook recipe with more info how you can use this method:

You can get a list of all blueprints used in your site with$kirby->blueprints()

Excellent, thank you