{% if medias|length > 1 and slider.indicators %}
{% for media in medias %}
{% endfor %}
{% endif %}
{% set active = true %}
{% set loopmedianotnull = 0 %}
{% for media in medias %}
{% if media.media %}
{% set loopmedianotnull = loopmedianotnull + 1 %}
{% endif %}
{% endfor %}
{% for media in medias %}
{% if media.media %}
{% set i18nMedia = media.i18n %}
{% set mediaConfig = media|thumbConfiguration(thumbConfiguration, true) %}
{{ media|thumb(mediaConfig, {"btnLink": true}) }}
{% if loopmedianotnull != 1 %}
{% if medias|length > 1 and slider.control %}
{% endif %}
{% endif %}
{% if i18nMedia %}
{% set mediaTitle = i18nMedia.title %}
{% set mediaTitleForce = i18nMedia.titleForce ? i18nMedia.titleForce : 2 %}
{% set mediaTitleAlignment = i18nMedia.titleAlignment ? i18nMedia.titleAlignment : 'text-left' %}
{% set mediaIntro = i18nMedia.introduction %}
{% set mediaIntroAlignment = i18nMedia.introductionAlignment ? i18nMedia.introductionAlignment : 'text-left' %}
{% set mediaBody = i18nMedia.body %}
{% set mediaBodyAlignment = i18nMedia.bodyAlignment ? i18nMedia.bodyAlignment : 'text-left' %}
{% if mediaTitle|striptags|length > 0 or mediaIntro|striptags|length > 0 or mediaBody|striptags|length > 0 %}
{% if mediaTitle|striptags|length > 0 %}
{{ mediaTitle|unescape|raw }}
{% endif %}
{% if mediaIntro|striptags|length > 0 %}
{{ mediaIntro|unescape|raw|nl2br }}
{% endif %}
{% include 'front/' ~ websiteTemplate ~ '/blocks/link.html.twig' with {'i18n': i18nMedia} %}