templates/front/Service/list.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% trans_default_domain 'Service' %}
  3. {% block body %}
  4.     {{ parent() }}
  5.     {% include 'components/pageHeader.html.twig' with {page} %}
  6.     {% include 'components/breadcrumb.html.twig' with {pages: [{label: 'services'}]} %}
  7.     {% for service in services %}
  8.         {% include 'components/serviceParagraph.html.twig' with {service} only %}
  9.     {% endfor %}
  10.     <img class="service-bottom-block-top-separation" src="{{ asset('build/images/pages/services/bottom-block-wave.svg') }}" alt="Assurboat">
  11.     <div class="service-bottom-block">
  12.         <div class="service-bottom-block-content">
  13.             <p class="description">
  14.                 {% set titleArray = 'bottom_block.text'|trans|raw|split('*') %}
  15.                 {% for titlePart in titleArray %}
  16.                     {% if loop.index0 % 2 == 0 %}
  17.                         {{ titlePart|raw }}
  18.                     {% else %}
  19.                         <span class="alternate-text">
  20.                     {{ titlePart|raw }}
  21.                 </span>
  22.                     {% endif %}
  23.                 {% endfor %}
  24.             </p>
  25.             <div class="buttons-row">
  26.                 <a href="{{ path('app_devis_index') }}" class="button">{{ 'bottom_block.button1'|trans }}</a>
  27.                 <a href="{{ path('app_contact_show') }}" class="button button-alternate-2">{{ 'bottom_block.button2'|trans }}</a>
  28.             </div>
  29.         </div>
  30.     </div>
  31. {% endblock %}