escape html in search results
[phinde.git] / data / templates / search / list.htm
1 {% if hitcount == 0 %}
2  <p>
3   Sorry, no results for "<tt>{{query}}</tt>".
4  </p>
5 {% else %}
6  <p>
7   Found {{hitcount}} search
8   {% if hitcount == 1 %}result{% else %}results{%endif%}
9   for "<tt>{{cleanQuery}}</tt>"
10   {% if site %}
11   on <tt>{{site}}</tt>
12   {% endif %}
13   in {{queryTime}}:
14  </p>
15  <ul class="hits">
16  {% for hit in hits %}
17    {% include 'search/hit.htm' %}
18  {% endfor %}
19  </ul>
20  {% include 'pager.htm' %}
21 {% endif %}