templates/includes/blocks/download-modal.html.twig line 1
{% if '/_sulu_preview' in app.request.requesturi %}
{% set style = 'style="display: none"' %}
{% else %}
{% set style = 'x-show="show" x-transition.duration.200ms' %}
{% endif %}
<div class="modal__modal" {{ style|raw }}>
<div class="modal-card">
<div class="modal-card__content">
<div class="modal-card__title{{ content.downloadModalTitleMobile ? ' desktop-only' : '' }}">
{{ content.downloadModalTitleDesktop | raw }}
</div>
{% if content.downloadModalTitleMobile %}
<div class="modal-card__title mobile-only">
{{ content.downloadModalTitleMobile | raw }}
</div>
{% endif %}
<div class="modal-card__text">
{{ content.downloadModalText | raw }}
</div>
</div>
<div class="modal-card__form">
{{ include('/includes/agenda-download-form.html.twig') }}
</div>
</div>
<div class="modal__close" @click="close">
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5 2.5L2.5 13.5" stroke="currentColor" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M2.5 2.5L13.5 13.5" stroke="currentColor" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
</svg>
</div>
</div>