It looks as if you defined the num: option in the parent instead of in the blueprint of the posts (minutes) itself where it should go? Or which one of those above is the blueprint for the minutes?
side note, I was able to sort of fix it after your previous comment of sections/minutes by updating sortBy to just sort, but I want to flip the order now. Tried both date asc and date desc.
type: pages
headline: Minutes
info: "{{ page.date.toDate('Ymd') }}"
template: minutes
empty: No minutes yet
sort: date desc
parent: kirby.page('about/meetings/minutes')
Something is wrong here, the date January 8, 2019 is differen tfrom 01.08.2019. Where does this info come from? Ymd should show 20190108, not what it is actually showing.
Apologies⦠copy and pasted and forgot to update all⦠this is what my sections/minutes looks like now, myself and my client are in the US so they read dates as āmonth day, yearā :
type: pages
headline: Minutes
info: "{{ page.date.toDate('m.d.Y') }}"
template: minutes
empty: No minutes yet
sort: date desc
parent: kirby.page('about/meetings/minutes')
That did it! Such a simple solution as with everything else Iām learning. As an FYI I followed the example here to build this, so might need to be updated to K3 if itās change since K2. Iām new so I donāt know. Thanks for the help again @texnixe!