I’m building in Kirby for the first time. I am trying to use the project.yml blueprint to learn about columns, sections and fields. I’m currently copy pasting this code from https://getkirby.com/docs/reference/sections/fields#multiple-fields-sections but in my panel it returns an empty screen.
What am I doing wrong here?
The code looks like this:
title: Project
pages: false
columns:
# main content
- width: 2/3
sections:
content:
type: fields
fields:
headline:
label: Headline
type: text
intro:
label: Intro
type: textarea
size: small
text:
label: Text
type: textarea
size: large
# meta information
- width: 1/3
sections:
meta:
type: fields
fields:
date:
label: Date
type: date
author:
label: Author
type: users
multiple: false
tags:
label: Tags
type: tags