Blueprint section by category

Hi there,

I was wondering if it is possible to make sections for a specific category (https://getkirby.com/docs/cookbook/content/filtering-with-tags).
For example, my blueprint now:

title: Projects
preset: pages
icon: 🖼

drafts:
  extends: sections/projects
  headline: Project Drafts

listed:
  extends: sections/projects
  headline: Published Projects
  layout: cards
  image:
    ratio: 16/9
    cover: true

Projects section:

type: pages
headline: Projecten
parent: kirby.page("projecten")
info: "{{ page.date.toDate('d.m.Y') }}"
template: project
empty: No blog(s) yet
sortBy: date desc

So is it possible to make a section for a specific category, for example: interior

type: pages
headline: Projecten
parent: kirby.page(“projecten/interior”)
info: “{{ page.date.toDate(‘d.m.Y’) }}”
template: project
empty: No blog(s) yet
sortBy: date desc

I can’t get it working with my above example.
Of how can I achieve this?

Thanks

Not with a default section. You can use a plugin (pagesdisplay section), but you lose the ability to add pages.

1 Like

Thank you. I will give it a try!