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

Open in your IDE?
  1. {% if hasProducts %}
  2.     {# HOME PAGE #}
  3.     {% if homeLayoutSections is defined %}
  4.         {% set page = 'banner' %}
  5.         {% set bg   = (homeLayoutSections.searchSection.background)? ' sec-bg-alt' : '' %}
  6.     {# INTERNAL PAGES #}
  7.     {% else %}
  8.         {% set page = 'topo' %}
  9.         {% set bg   = ' sec-bg-alt' %}
  10.     {% endif %}
  11.     <div class="busca-contem-{{ page }}{{ bg }}">
  12.         <div class="container">
  13.             {% include 'website/includes/search-form-section.html.twig' %}
  14.         </div>
  15.     </div>
  16. {% endif %}