templates/components/paragraph.html.twig line 1

Open in your IDE?
  1. <div class="paragraph">
  2.     <div class="paragraph-col-1">
  3.         <h3 class="over-title">{{ paragraph.subTitle }}</h3>
  4.         <h2 class="title">{{ paragraph.title }}</h2>
  5.         <div class="text">{{ paragraph.description|raw }}</div>
  6.         {% if paragraph.ctaText %}
  7.             <a href="{{ paragraph.ctaUrl }}" class="button">{{ paragraph.ctaText }}</a>
  8.         {% endif %}
  9.     </div>
  10.     <div class="paragraph-col-2">
  11.         <img class="picture" src="{{ asset(vich_uploader_asset(paragraph, 'imageFile')) }}" alt="{{ paragraph.imageAlt ?? paragraph.imageName }}" />
  12.     </div>
  13. </div>