{% set twig_img_path = absolute_url('/media/image/') %}
<div class="h-auto vp-5 page-wrapper">
<div class="row row-without-margin">
{% if pageContents['landing_card']|default(null) %}
{% for key, section in pageContents['landing_card'] %}
{% set imageSource = twig_img_path ~ section.sectionImage.path %}
{% include '@App/bundles/SyliusShopBundle/Homepage/sections/cards_card.html.twig' with {
'imageSource': imageSource,
'content': section.content,
'buttonLink': section.slug,
'buttonText': 'bundles.sylius_shop.homepage.index.landing_sections.slider.see_more'
} %}
{% endfor %}
{% endif %}
</div>
</div>