Hi!
Now I am working on adding custom page blueprints to make it easier to add content to the website and I came across a problem where I am trying to add a list within a list.
I got it partially working, yet I think it is not going to work since it is not implemented.
Part of custom blueprint for the page:
header.topcards:
name: topcards
type: list
style: vertical
label: Topcards
fields:
.title:
type: text
label: Card title
header.listitem:
name: lisitem
type: list
style: vertical
label: List
fields:
.title:
type: text
label: Title
.content:
type: textarea
label: Content
Which becomes something like this:
And this is how I would like it to be formatted in page header.
topcards:
card1:
title: Card 1
items:
-
title: 'List item 1'
content: 'List item content'
-
title: 'List item 1'
content: 'List item content'
card2:
title: Card 2
items:
-
title: 'List item 1'
conten: List item content
-
title: 'List item 1'
content: 'List item content'
If someone could point me in the right direction, or if I should request this as a new function in GitHub, would be much appriciated.
Thanks!