How to add new subpages to home page in the panel?

I’m trying to work out a way for new project subpages to be added in the panel and displayed on the home page. I am trying to assign each new project subpage the project.php template - Currently I can only choose projects from the contents/home/ folder that I have manually created

What I’m confused about is that I’m recycling code from another project I did and getting different results. How can I add a subpage, choose a title and template?

Blueprint:

projects: 
    type: pages
    layout: cards
    image: 
      cover: true
      ratio: 1/1

This is the result I want again

With this current build using the same blueprint it is only giving me these options

Because you are using a field instead of a pages section. Unfortunately, your context is not obvious from the little blueprint excerpt.

1 Like

Is it possible to use a pages section inside a tab? Can’t seem to work it out

This is my current blueprint:

title: Home
icon: 🏠

options:
  changeStatus: false
  changeTemplate: false

tabs:
  content:
    label: Content
    icon: text
    fields: 
      // fields here

Yes, you can use sections within tabs but not mixed with fields (or not directly but via sections), like this:

title: Home
icon: 🏠

options:
  changeStatus: false
  changeTemplate: false

tabs:
  content:
    label: Content
    icon: text
    sections: 
      fields: # a fields section with any number of fields
        type: fields
        fields:
          // fields here
      pages: # this is now a section
        type: pages
        headline: My beautiful pages section

You can further elaborate on the layout by using columns inside your tabs, of course, an put the pages section into one column and the fields section into another.