Blueprint show children pages

Hello!

I want to show the children pages inside the parent page via my blueprint.
When I make use of

preset: page

I am able to see / enter those children pages. But when I want to customize the blueprint for my parent page I have to changes some field. So I tried:

title: People
icon: 

columns:
  - width: 2/3
    fields:
      headerimage:
        label: Header Image
        type: headline   
      cover:
        type: files
        label: Cover Image
        info: "{{ file.dimensions }}"
        template: cover
        min: 1
        max: 1  
      headline:
        label: Headline
        type: text                                  

            
        
  - width: 1/3
    sections:
      meta:
        type: fields
        fields:
          uploads:
            label: Images
            type: files  
          pages:
            type: pages
            label: Children Pages

Now I got a page select function.
What do I have to use to show the children pages the same way they do with the preset: page

Thanks

You have to use a section instead of a field. So on the same level as the meta section.

 - width: 1/3
    sections:
      meta:
        type: fields
        fields:
          uploads:
            label: Images
            type: files  
      pages:
        type: pages
        headline: Children Pages
1 Like

Clear. Thank you!