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.             <div class="wrapper-items">
  23.                 {% for item in services %}
  24.                 <div class="wrapper-item">
  25.                     <a href="#" class="wrapper-image">
  26.                         <img src="{{ item.image }}" alt="">
  27.                     </a>
  28.                     <div class="wrapper-text">
  29.                         <a href="{{ path('page_service',{'id':item.id}) }}">
  30.                             {{ item.title }}
  31.                         </a>
  32.                         <p>
  33.                             {{ item.shortDescription }}
  34.                         </p>
  35.                         <a href="{{ path('page_service',{'id':item.id}) }}">
  36.                             Read More
  37.                         </a>
  38.                     </div>
  39.                 </div>
  40.                 {% endfor %}
  41.             </div>
  42.         </div>
  43.     </section>
  44. {% endblock %}