templates/areas/services/view.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     <style>
  3.         .services .pimcore_editable_block { display: flex; flex-wrap: wrap; width: 100%; justify-content: center; }
  4.         .services .pimcore_editable_block .pimcore_block_entry { width: calc(100% / 3); padding: 0 12px; }
  5.         .services .services-box { max-width: none; }
  6.     </style>
  7. {% endif %}
  8. <div class="services standard-component mb-7">
  9.     <h2 class="text-center mb-5">{{ pimcore_input('services-title') }}</h2>
  10.     <div class="d-flex flex-column flex-md-row justify-content-md-center gap-4">
  11.         {% for i in pimcore_iterate_block(pimcore_block('service-cards', { limit: 3 } )) %}
  12.             <div class="services-box border border-bmw-light-60 p-3">
  13.                 {% include "./partials/_news-card.html.twig" %}
  14.             </div>
  15.         {% endfor %}
  16.     </div>
  17. </div>