10 lines
562 B
HTML
10 lines
562 B
HTML
<figure {% if class %}class="{{ class }}"{% endif %}>
|
|
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
|
|
<iframe src="https://www.youtube.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;" title="youtube video" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
|
|
</div>
|
|
<figcaption>
|
|
{% if title %}<h4>{{ title }}</h4>{% endif %}
|
|
{{ body | markdown | safe }}
|
|
</figcaption>
|
|
</figure>
|