templates/website/includes/search-section.html.twig line 1

Open in your IDE?
  1. {% if hasProducts %}
  2.     {% if banners is defined and homeLayoutSections is defined and banners|length > 0 and homeLayoutSections.bannerSection %}
  3.         <div class="busca-contem-banner {% if section is defined and section.background %} sec-bg-alt{% endif %}">
  4.             <div class="container">
  5.                 {% include 'website/includes/search-form-section.html.twig' %}
  6.             </div>
  7.         </div>
  8.     {% else %}
  9.         <div class="busca-contem-topo">
  10.             <div class="container">
  11.                 {% include 'website/includes/search-form-section.html.twig' %}
  12.             </div>
  13.         </div>
  14.     {% endif %}
  15. {% endif %}