templates/app/CustomizedSolutions/_product.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.     {% if product|default(0) %}
  7.         <section class="bg-title-grey">
  8.             <div class="page-wrapper {% if is_mobile() %} section-content-group {% else %} section-content {% endif %} ">
  9.                 {% include 'app/CustomizedSolutions/breadcrumb.html.twig' with { 'productName': product.name } %}
  10.             </div>
  11.         </section>
  12.         <section class="page-wrapper">
  13.             {% if is_mobile() %}
  14.                 {% include 'app/CustomizedSolutions/Mobile/_customized_solutions.html.twig' %}
  15.             {% else %}
  16.                 {% include 'app/CustomizedSolutions/Desktop/_customized_solutions.html.twig' %}
  17.             {% endif %}
  18.         </section>
  19.     {% else %}
  20.         <div class="group-box">
  21.             <div class="group-content">
  22.                 <h2 class="ff-os-regular ct-blue group-empty">{{ "sylius.ui.not_found"|trans }}</h2>
  23.             </div>
  24.         </div>
  25.     {% endif %}
  26. {% endblock %}
  27. {% block javascripts %}
  28.     {{ parent() }}  
  29.     {{ encore_entry_script_tags('spinner') }}
  30. {% endblock %}