# Pages

The Pages preset is intended for container pages like a blog with subpages in different states of their publishing cycle

****

- Read more: <https://getkirby.com/docs/guide/blueprints/presets#available-presets__group-of-pages-pages>

****

<warning>
Do not use presets for new projects. Presets will be deprecated in future versions of Kirby.
</warning>

A basic blueprint using a pages preset looks like this:

```yaml
Title: Pages preset example
preset: pages
```

<figure class="image"><a data-lightbox href="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=2560&amp;height=1396&amp;enlarge=0"><img alt="" class="rounded" height="504" loading="lazy" sizes="auto" src="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=924&amp;height=504&amp;enlarge=0" srcset="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=462&amp;height=252&amp;enlarge=0 462w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=690&amp;height=376&amp;enlarge=0 690w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=924&amp;height=504&amp;enlarge=0 924w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=1380&amp;height=753&amp;enlarge=0 1380w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/83fd108046-1717846665/pages-empty.png?width=1848&amp;height=1008&amp;enlarge=0 1848w" width="924"></a></figure>

By default, this adds two sections of type `pages` to your form: A drafts section (default label "Drafts") and a section of listed pages (default label "Published").

<figure class="image"><a data-lightbox href="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=2560&amp;height=1396&amp;enlarge=0"><img alt="" class="rounded" height="504" loading="lazy" sizes="auto" src="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=924&amp;height=504&amp;enlarge=0" srcset="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=462&amp;height=252&amp;enlarge=0 462w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=690&amp;height=376&amp;enlarge=0 690w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=924&amp;height=504&amp;enlarge=0 924w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=1380&amp;height=753&amp;enlarge=0 1380w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/60ab05c8a2-1717846665/pages-filled.png?width=1848&amp;height=1008&amp;enlarge=0 1848w" width="924"></a></figure>

This preset is again extendable. For example, if you want to add a section for pages in review while at the same time using predefined sections with additional options, you can do it like this using the keywords `drafts`, `unlisted`, and `listed`:

```yaml
title: Blog
preset: pages
icon: 📜
options:
  url: false
  status: false
  delete: false
drafts:
  extends: sections/articles
  label: Unpublished articles
unlisted:
  extends: sections/articles
  label: Articles in review
listed:
  extends: sections/articles
  label: Published articles
```

<figure class="image"><a data-lightbox href="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=2560&amp;height=1396&amp;enlarge=0"><img alt="" class="rounded" height="504" loading="lazy" sizes="auto" src="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=924&amp;height=504&amp;enlarge=0" srcset="https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=462&amp;height=252&amp;enlarge=0 462w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=690&amp;height=376&amp;enlarge=0 690w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=924&amp;height=504&amp;enlarge=0 924w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=1380&amp;height=753&amp;enlarge=0 1380w, https://assets.getkirby.com/media/pages/docs/reference/panel/presets/pages/377925beb1-1717846665/pages-blog.png?width=1848&amp;height=1008&amp;enlarge=0 1848w" width="924"></a></figure>