templates/page/home/components/our-operations.html.twig line 1

Open in your IDE?
  1. {% import 'common/macros/elements.html.twig' as elements %}
  2. {% import 'common/macros/svg.html.twig' as svg %}
  3. {% macro list_item(title, text, img) %}
  4.     <div class="item">
  5.         <div class="icon">{{ img }}</div>
  6.         {{ elements.heading(title, 3, 'title') }}
  7.         <p class="text">{{ text }}</p>
  8.     </div>
  9. {% endmacro %}
  10. {% import _self as _ %}
  11. <section class="our-operations section" id="operations">
  12.     <div class="our-operations-wrapper">
  13.         <div class="section-header">
  14.             {{ elements.heading('common.services'|trans|upper, 4, 'section-category') }}
  15.             {{ elements.heading('common.our_operations'|trans, 2, 'section-title') }}
  16.         </div>
  17.         <div class="list">
  18.             {{ _.list_item('home.services_vision'|trans, 'home.services_vision_text'|trans, svg.vision) }}
  19.             {{ _.list_item('home.services_payment'|trans, 'home.services_payment_text'|trans, svg.payment) }}
  20.             {{ _.list_item('home.services_execution'|trans, 'home.services_execution_text'|trans, svg.execution) }}
  21.             {{ _.list_item('home.services_marketing'|trans, 'home.services_marketing_text'|trans, svg.marketing) }}
  22.             {{ _.list_item('home.services_support'|trans, 'home.services_support_text'|trans, svg.support) }}
  23.             <div class="more">
  24.                 {{ elements.CTA('common.about_us'|trans|upper, path('about_us_index'), 'secondary') }}
  25.             </div>
  26.         </div>
  27.     </div>
  28. </section>