{% extends "xprez/modules/text_base.html" %} {% load thumbnail xprez %} {% block attrs %} {{ block.super }} {% if module.url %} onclick="if (event.target.closest('a, button')) return; window.location.href='{{ module.url }}';" {% endif %} {% endblock %} {% block content %} {{ module.background }} {% if module.media %}
{% if module.media_is_image %} {% for source in module.media_image_sources %} {% if source.max_width %} {% else %} {% include "xprez/includes/responsive_image.html" with source=module.media geometries=source.geometries sizes=module.image_sizes alt=module.media.name crop=source.thumbnail_crop css_class="xprez-text__image" loading="lazy" %} {% endif %} {% endfor %} {% elif module.media_is_video %} {% else %} {{ module.media.name }} {% endif %}
{% endif %} {% if module.text %}
{{ block.super }}
{% endif %} {% endblock %}