templates/components/insuranceOffers/insuranceOffersBlock.html.twig line 1

Open in your IDE?
  1. <div class="insurance-offer-block">
  2.     {% if icon is defined %}<img class="top-icon" src="{{ asset('build/images/components/insuranceOffersBlock/' ~ icon) }}" alt="Assurboat" />{% endif %}
  3.     <p class="over-title">{{ subTitle }}</p>
  4.     {#    <h1 class="title">{{ title|raw }}</h1>#}
  5.     <h1 class="title">
  6.         {% set titleArray = title|split('*') %}
  7.         {% for titlePart in titleArray %}
  8.             {% if loop.index0 % 2 == 0 %}
  9.                 {{ titlePart|raw }}
  10.             {% else %}
  11.                 <span class="alternate-text">
  12.                     {{ titlePart|raw }}
  13.                 </span>
  14.             {% endif %}
  15.         {% endfor %}
  16.     </h1>
  17.     <div class="text">{{ description|raw }}</div>
  18.     <div class="offers">
  19.         {% for category in categories %}
  20.             {% include 'components/insuranceOffers/insuranceOfferCard.html.twig' with {category} %}
  21.         {% endfor %}
  22.     </div>
  23. </div>