{% set twig_img_path = absolute_url('/media/image/') %}
<div class="page-wrapper fluid-wrapper h-auto">
<div class="carousel slide h-100" data-ride="carousel" id="landing_slider">
<!-- Indicators -->
<ul class="carousel-indicators round-carousel-indicators">
{% if pageContents['landing_slider']|default(null) %}
{% for key, section in pageContents['landing_slider'] %}
{% set active = (key + 1) == 1 %}
<li {% if active %}class="active"{% endif %} data-slide-to="{{ key }}" data-target="#landing_slider"></li>
{% endfor %}
{% endif %}
</ul>
<!-- The slideshow -->
<div class="carousel-inner h-100 align-middle">
{% if pageContents['landing_slider']|default(null) %}
{% for key, section in pageContents['landing_slider'] %}
{% set active = (key + 1) == 1 %}
{% set imageSource = twig_img_path ~ section.sectionImage.path %}
{% include '@App/bundles/SyliusShopBundle/Homepage/sections/slider_card.html.twig' with {
'imageSource': imageSource,
'content': section.content,
'link': section.slug,
'buttonText': 'bundles.sylius_shop.homepage.index.landing_sections.slider.see_more',
'isActive': active,
} %}
{% endfor %}
{% endif %}
</div>
<div class="slider-border-bottom">
{% include '@App/bundles/SyliusShopBundle/Homepage/sections/slider_border_bottom.html.twig' %}
</div>
</div>
</div>