{% load static %} {% load cms_tags %} {% load sekizai_tags %} {% load l10n %} {% load thumbnail %} {% load djangocms_slick_slider_utils %} {% addtoblock 'css' %} {% endaddtoblock %}
{# Loop over images we added to context #} {% for image in images %}
{# Create image thumbnail, check link #} {% if instance.full_width %} {% thumbnail image.image image.full_width_dimensions upscale=True as thumb %} {% else %} {% thumbnail image.image child_width crop=False upscale=True as thumb %} {% endif %} {% if image.link %}{% endif %} {{ image.image.default_alt_text }} {% if image.link %}{% endif %} {# Add caption, if exists #} {% if image.caption_text %}
{{image.caption_text|linebreaks}}
{% endif %}
{% endfor %}
{% addtoblock 'js' %} {% endaddtoblock %}