Silly question... I've got my admin setup to have list items but I'm still unsure how to piece it together in my example.html.twig template.
Here's part my YAML:
header.customer_videos:
ordering@: 10
type: list
collapsed: true
label: Videos
fields:
.video:
type: textarea
size: large
label: Video Embed
Here's what I have in my template:
{% for video in page.header.customer_videos %}
<div><p>{{ customer_videos.video }}</p></div>
{% endfor %}
I'm definitely missing something in the for statement, but I'm not sure what??