templates/components/serviceParagraph.html.twig line 1

Open in your IDE?
  1. <div class="paragraph" id="{{ service.slug }}">
  2.     <div class="paragraph-col-1">
  3.         <h3 class="over-title">{{ service.subTitle }}</h3>
  4.         <h2 class="title">
  5.             {% set titleArray = service.title|split('*') %}
  6.             {% for titlePart in titleArray %}
  7.                 {% if loop.index0 % 2 == 0 %}
  8.                     {{ titlePart|raw }}
  9.                 {% else %}
  10.                     <span class="alternate-text">
  11.                     {{ titlePart|raw }}
  12.                 </span>
  13.                 {% endif %}
  14.             {% endfor %}
  15.         </h2>
  16.         <div class="text">{{ service.paragraph|raw }}</div>
  17.     </div>
  18.     <div class="paragraph-col-2">
  19.         <img class="picture" src="{{ asset(vich_uploader_asset(service, 'illustrationFile')) }}" alt="{{ service.illustrationAlt ?? service.illustrationName }}" />
  20.     </div>
  21. </div>