{% load wagtailimages_tags wagtailembeds_tags %} {% block homepage_media %} {% if media %}
{% for media in media %}
{% if media.youtube_link %} {% if not is_via_freebasics %}
{% embed media.youtube_link %}
{% else %}

{{media.title}}

{% trans 'Click to watch on youtube!' %}

{% trans "Media will be played externally in a new window" %}

{% endif %} {% elif media.type == 'video' %} {% if not is_via_freebasics %}
{% else %}

{{media.title}}

{% trans "Video files will not be played, you can download them" %}

{% endif %} {% elif media.type == 'audio' %} {% if not is_via_freebasics %}
{% else %}

{{media.title}}

{% trans "Audio files will not be played, you can download them" %}

{% endif %} {% endif %} {% if not is_via_freebasics %} {% endif %}
{% endfor %}
{% endif %} {% endblock %}