Problem with blueprint and panel

Hello everyone,

I am a newbie to Kirby :hot_face:
I am creating a website for my music label. I’m trying to create a blueprint for a Release page (with artist name, album name, album cover, audio track files, etc.)

I have make 2 col, one for information (it’s work) and one for the album cover and the audio playlist (it’s doesn’t work).
On my panel I have just the section for audio on the col2, the cover section does not appear.

title: Release

columns:
  col1:
    width: 2/3
    sections: 
      content:
        type: fields
        fields:
          nom:
            label: Titre dalbum
            type: text
          artiste:
            label: Artiste
            type: text
          STRXXX:
            label: Numéro de catalogue
            type: text
          date: 
            label: Date
            type: text
          description:
            label: Description
            type: textarea  
          mixe:
            label: Mixe
            type: textarea
          master:
            label: Mastered
            type: text
          artwork:
            label: Artwork
            type: text
          photo:
            label: Photo
            type: text
          graphic: 
            label: Graphic
            type: text
          shouts: 
            label: Artiste remerciement 
            type: text                     
  col2:
    width: 1/3
    sections: 
      Cover:
        template: image
        type: files
        layout: cards
        image:
          cover: true
          ratio: 1/1
    sections: 
      Tracks:
        template: audio
        type: files

Do you have any idea why it is not working properly?
Thank you in advance for your help :slightly_smiling_face:

Great, we love newbies! Welcome to our community.

The problem is that you use the keyword sections twice in the second column. Should be:

col2:
    width: 1/3
    sections: 
      cover:
        template: image
        type: files
        layout: cards
        image:
          cover: true
          ratio: 1/1
      tracks:
        template: audio
        type: files

Hey!
Thanks a lot for your answer. I didn’t know we couldn’t create multiple section by column, I’ll remember that now :wink:

You can create as many sections as you want per column, but you can only use the keyword sections once per column. cover and tracks in your example are sections…

Oooh okay great!! Thanks :slightly_smiling_face: