Hello, in my blueprint I have added on after another three type:files, called files, images and imagetest.
Each does the same. Adds an uploadfield to the Panel
After uploading some files, I renamed my selfcreated names like files > datafiles and the files arent anymore displayed on the panel, but they all are files. I don’t understand from where my uploaded files does know that they are uploaded with the name “files” in blueprint and not with name “datafiles”? Is this stored anywhere? So all files are grouped by their name in panel.
The next thing is for uploading the images there exist a default.yml in site/blueprints/files. This is used instead of template:image. How ca I use the image.yml in site/blueprints/files? I thought “template” will do it.
title: testyear
columns:
main:
width: 1/1
sections:
pages:
type: pages
template: testyear # define what template childsites are using
layout: list
content:
type: fields
fields:
headline:
label: Headline
type: text
files:
type: files
layout: cards
template: image
info: "{{ file.dimensions }}"
image:
ratio: 5/4
cover: true
min: 1
size: small
images:
type: files
layout: cards
template: image
info: "{{ file.dimensions }}"
image:
ratio: 5/4
cover: true
min: 1
size: small
imagestest:
type: files
layout: cards
template: image
info: "{{ file.dimensions }}"
image:
ratio: 5/4
cover: true
min: 1
size: small