Multiple Info Sections for Cards in Panel

Hey guys, this seems like a pretty simple issue, but I’ve looked through the docs and forum but can’t find a way to make it work. I’m trying to query multiple info fields from child pages in the panel and have it display on the parent page. Here is my code that I have tried but didn’t work:

        info: "{{ page.countries }}"
        info: "{{ page.detail }} {{ page.amount }}"
        info: "{{ page.description }}"

How can I make this work?

I’m missing some context. What is info? Is this in a section? Or an info field?

And what type of fields are you trying to query here?

It was in an info field I believe. The queries are all working fine when only one info field is present, but only the last one shows when there are multiple listed. Is there a way to get all the info fields to show on the card in the blueprint?

This is the expanded code block:

center:
        width: 1/1
        sections:
          published:
            type: pages
            headline: Published pages
            status: listed
            layout: cards
            template: bonus
            info: "{{ page.countries }}"
            info: "{{ page.detail }} {{ page.amount }}"
            info: "{{ page.description }}"

You can use multiple lines like that:

  center:
    width: 1/1
    sections:
      published:
        type: pages
        headline: Published pages
        status: listed
        layout: cards
        template: bonus
        info: |
          {{ page.countries }}
          {{ page.detail }} {{ page.amount }}
          {{ page.description }}

Thanks :slight_smile: is there a way to add line breaks to this? At the moment it is in one long string

Figured it out, you can use a break HTML tag to separate lines in this scenario, thanks for your help all :slight_smile: