templates/product/search.html.twig line 13

Open in your IDE?
  1. {% extends 'layouts/layout.html.twig' %}
  2. {% block content %}
  3. {% if products|length < 1 %}
  4. <h3 class="text-center">{{ 'shop.empty-result' | trans }}</h3>
  5. <h2 class="text-center">{{ term | upper }}</h2>
  6. {% else  %}
  7. <h2>{{ term | upper }}</h2>
  8. <form id="js_filterfield" action="" method="get">
  9.     <input type="hidden" name="term" value="{{ term }}"/>
  10.     <div class="productList" id="js-productlist">
  11.         {% include "product/listing_content.html.twig" with {'productListing': products, 'language': language} %}
  12.     </div>
  13. </form>
  14. {% endif %}
  15. {% endblock %}