{% extends "demo/module/module.html" %}
{% import "./embed.html" as embed %}
{% block content %}
{% call embed.ratio21by9() %}
content
{% endcall %}
{% call embed.ratio16by9() %}
content
{% endcall %}
{% call embed.ratio4by3() %}
content
{% endcall %}
{% call embed.ratio1by1() %}
content
{% endcall %}
{% call embed.ratio(2/1) %}
content
{% endcall %}
{% call embed.sizes(2, 1) %}
content
{% endcall %}
{% call embed.ratio16by9() %}
{{ embed.iframe('https://www.youtube.com/embed/zpOULjyy-n8?rel=0') }}
{% endcall %}
{% endblock %}