templates/includes/blocks/sticky-teaser.html.twig line 1
<div class="sticky-teaser {% if content.inverted %}sticky-teaser--inverted {% endif %} {{ content.top }} {{ content.bottom }}"
x-data="stickyteaser">
<div class="sticky-teaser__container">
<div class="sticky-teaser__title" x-ref="title">
{% if content.stickyTeaserPagina %}
{% if content.stickyTeaserSeoHeadlinePagina %}<{{ content.stickyTeaserSeoHeadlinePagina }}>{% endif %}
<div class="pagina">
{{ content.stickyTeaserPagina }}
</div>
{% if content.stickyTeaserSeoHeadlinePagina %}</{{ content.stickyTeaserSeoHeadlinePagina }}>{% endif %}
{% endif %}
<div {% if content.stickyTeaserTitleMobile %} class="desktop-only" {% endif %}>
{{ content.stickyTeaserTitleDesktop|raw }}
</div>
</div>
{% if content.stickyTeaserTitleMobile %}
<div class="sticky-teaser__title mobile-only" x-ref="mobiletitle">
{{ content.stickyTeaserTitleMobile|raw }}
</div>
{% endif %}
{% if content.lead %}
<div class="sticky-teaser__lead" x-ref="lead">
{{ content.lead|raw }}
</div>
{% endif %}
{% if content.stickyTeaserActionLink != null %}
<div class="sticky-teaser__actions" x-ref="actions">
{% if content.stickyTeaserButtonType == 'box' %}
<a href="{{ content.stickyTeaserActionLink }}"
class="button button--{{ content.stickyTeaserButtonColor }}
button--size-{{ content.stickyTeaserButtonSize }}">
<span class="button__inner">
{{ content.stickyTeaserButtonLabel }}
</span>
</a>
{% elseif content.stickyTeaserButtonType == 'text' %}
<a href="{{ content.stickyTeaserActionLink }}"
class="text-button text-button--{{ content.stickyTeaserTextButtonColor }}
{% if content.uppercase %} uppercase {% endif %}">
{{ content.stickyTeaserButtonLabel }}
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16">
<path d="M.5 8.5h15M10.5 3.5l5 5-5 5" stroke="currentColor" stroke-miterlimit="10"
stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
{% endif %}
</div>
{% endif %}
<div class="sticky-teaser__main">
<div class="sticky-teaser__aside">
<div class="sticky-teaser__media" x-ref="animation" data-path="/assets/animation.json"></div>
</div>
<div class="sticky-teaser__content" x-ref="content">
<div class="swiper-container" x-ref="swiper">
<div class="swiper-wrapper">
{% for card in content.subblocks %}
{{ include('/includes/blocks/sticky-teaser-card.html.twig') }}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>