Create new page with other template

hello,
it’s possible to set not the default template when add a new page?

greetings perry

You can look at Kirby Docs > Panel > Blueprints > Subpages Settings > Templates for subpages .

Good luck!

If you are testing out the starterkit, you will find a blueprint called site.php with the following content:

<?php if(!defined('KIRBY')) exit ?>

title: Site
pages: default
fields:
  title:
    label: Title
    type:  text
  author:
    label: Author
    type:  text
  description:
    label: Description
    type:  textarea
  keywords:
    label: Keywords
    type:  tags
  copyright:
    label: Copyright
    type:  textarea

The line

pages: default

limits the possible templates to the default template. If you want to allow any kind of template, you can just delete that line.

You can also define another template or multiple template as described in the docs.

Thank you for helping.