src/Cms/CoreBundle/Resources/views/includes/Search/empty.html.twig line 1

Open in your IDE?
  1. {% set results = _args.results %}
  2. {% if results is same as(0) and not app.request.xmlHttpRequest %}
  3.     <div class="alert alert-data margin-top-lg">
  4.         <p>
  5.             {% if app.request.query.has('cql') %}
  6.                 The filtering criteria you have selected yields no results.
  7.                 Please modify or <a href="#" data-campussuite-search-clear><strong>clear</strong></a> the filters to search for more results.
  8.             {% else %}
  9.                 There are no results.
  10.             {% endif %}
  11.         </p>
  12.     </div>
  13. {% endif %}