I am currently trying to migrate my website from Kirby 2 to Kirby 3. It hasn’t exactly been easy for me, but so far so good. However, I have a bunch of projects that have images associated with them.
The folder structure is like this:
home
projects
1_project-name
project.txt
imagename.jpg
imagename.jpg.txt
2_project-name
project.txt
imagename.jpg
imagename.jpg.txt
This is my project.yml
template:
title: Project
preset: page
status:
draft: Draft
listed: Published
fields:
title:
type: text
required: true
headline: Titel
text:
type: textarea
size: large
sidebar:
images:
type: files
headline: Afbeeldingen
template: image
I also have a files/image.yml
blueprint:
title: Image
fields:
alt:
label: Alt Text
type: text
(and a files/default.yml
which is the same)
However, when I look at a project page in the panel, I don’t see any images. What am I doing wrong?