templates/website/page/services.html.twig line 1

  1. {% extends '@web/base.html.twig' %}
  2. {% block body %}
  3.     <section class="section-services">
  4.         <div class="custom-container">
  5.             <div class="wrapper-navigation">
  6.                 <h1>
  7.                     {{ 'Services'|trans }}
  8.                 </h1>
  9.                 <ul>
  10.                     <li>
  11.                         <a href="{{ path('page_index') }}">
  12.                             {{ 'Home'|trans }}
  13.                         </a>
  14.                     </li>
  15.                     <li>
  16.                         <span>
  17.                             {{ 'Services'|trans }}
  18.                         </span>
  19.                     </li>
  20.                 </ul>
  21.             </div>
  22. {#            {% include '@web/parts/partner-nviraberir.html.twig' with {'intro': true} %}#}
  23.             <div class="wrapper-news wrapper-news-flush">
  24.                 <div class="wrapper-items">
  25.                     {% for item in services %}
  26.                         <div class="wrapper-item">
  27.                             <a href="{{ path('page_service',{'id':item.id}) }}" class="wrapper-image">
  28.                                 <span class="service-index">{{ '%02d'|format(loop.index) }}</span>
  29.                                 <img src="{{ item.image }}" alt="{{ item.title }}">
  30.                             </a>
  31.                             <div class="wrapper-text">
  32.                                 <h3>
  33.                                     {{ item.title }}
  34.                                 </h3>
  35.                                 <p>
  36.                                     {{ item.shortDescription }}
  37.                                 </p>
  38.                                 <a href="{{ path('page_service',{'id':item.id}) }}">{{ 'READ MORE'|trans }}</a>
  39.                             </div>
  40.                         </div>
  41.                     {% endfor %}
  42.                 </div>
  43.             </div>
  44.         </div>
  45.     </section>
  46. {% endblock %}