{% 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 %} {% if media.title %} {% trans "Download" %} {% if media.youtube_link or media.type == 'video'%}Video{% elif media.type == 'audio'%}Audio{% endif %} {% endif %} {% endif %}
{% endfor %} {% endif %} {% endblock %}