templates/bundles/SyliusShopBundle/Homepage/sections/cards.html.twig line 1

Open in your IDE?
  1. {% set twig_img_path = absolute_url('/media/image/') %}
  2. <div class="h-auto vp-5 page-wrapper">
  3.     <div class="row row-without-margin">
  4.         {% if pageContents['landing_card']|default(null) %}
  5.             {% for key, section in pageContents['landing_card'] %}
  6.                 {% set imageSource = twig_img_path ~ section.sectionImage.path %}
  7.                 {% include '@App/bundles/SyliusShopBundle/Homepage/sections/cards_card.html.twig'  with {
  8.                     'imageSource': imageSource,
  9.                     'content': section.content,
  10.                     'buttonLink': section.slug,
  11.                     'buttonText': 'bundles.sylius_shop.homepage.index.landing_sections.slider.see_more'
  12.                 } %}
  13.             {% endfor %}
  14.         {% endif %}
  15.     </div>
  16. </div>