templates/app/CustomizedSolutions/customized_solutions.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}
  3.     {{ parent() }}
  4. {% endblock %}
  5. {% block page_container %}
  6.     <section class="bg-title-grey">
  7.         <div class="page-wrapper {% if is_mobile() %} section-content-group {% else %} section-content {% endif %} ">
  8.             {% include 'app/CustomizedSolutions/breadcrumb.html.twig' %}
  9.         </div>
  10.     </section>
  11.     <section class="page-wrapper">
  12.         {% if products|default(0) %}
  13.             <article class="group-index h-auto">
  14.                 {% if products|default(0) %}
  15.                     <section class="group-product-cards col-sm-12 mt-4 pl-0 pr-0">
  16.                         {% include 'app/CustomizedSolutions/products.html.twig' with {"products": products } %}
  17.                     </section>
  18.                 {% endif %}
  19.             </article>
  20.         {% else %}
  21.             <div class="group-box">
  22.                 <div class="group-content">
  23.                     <h2 class="ff-os-regular ct-blue group-empty">{{ "group.empty"|trans }}</h2>
  24.                 </div>
  25.             </div>
  26.         {% endif %}
  27.     </section>
  28. {% endblock %}
  29. {% block javascripts %}
  30.   {{ encore_entry_script_tags('app') }}
  31. {% endblock %}