templates/front/paragraphsList.html.twig line 1

Open in your IDE?
  1. {% set isBtnLink = isBtnLink|default %}
  2. {% for key, paragraph in paragraphs %}
  3.     <section class="position-relative pay-30 {{ loop.last ? "mab-50" }}">
  4.         {% include (paragraph.isFade ? "front/paragraphFade.html.twig" : "front/paragraph.html.twig") with {
  5.             'img':asset(vich_uploader_asset(paragraph, vichFile))|imagine_filter('medium'),
  6.             "title":paragraph.title,
  7.             "subtitle":paragraph.subtitle,
  8.             "content":paragraph.description,
  9.             "paragraph":paragraph
  10.         } %}
  11.     </section>
  12. {% endfor %}