Hello, i can’t find a way to use plugin Youtube or MediaEmbed in twig file. I want set youtube urls in the page header
title: 2009
youtubes:
- header: Video1
url: https://www.youtube.com/watch?v=BK8guP9ov2U
- header: Video2
url: https://www.youtube.com/watch?v=BK8guP9ov2U
And use them in twig
{% for youtube in page.header.youtubes %}
{% if youtube.header %}
<h6>{{ youtube.header }}</h6>
{% endif %}
{% if youtube.url %}
[plugin:youtube]({{ youtube.url }})
{% endif %}
{% endfor %}
BTW I set in system.yaml “pages: process: twig: true”, but no luck.