20 lines
438 B
Plaintext
20 lines
438 B
Plaintext
|
<section
|
||
|
id="media"
|
||
|
class="media"
|
||
|
>
|
||
|
{% for medium in media %}
|
||
|
<h2>{{ medium.title }}</h2>
|
||
|
|
||
|
<figure class="media-iframe-parent">
|
||
|
<iframe
|
||
|
class="media-iframe"
|
||
|
src="{{ medium.link }}"
|
||
|
title="YouTube video player"
|
||
|
frameborder="0"
|
||
|
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture"
|
||
|
allowfullscreen
|
||
|
></iframe>
|
||
|
</figure>
|
||
|
{% endfor %}
|
||
|
</section>
|