46bf4bae8655f0449191927f88b332c0919c46aa
[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 class="resultinfo">
7   {{hitcount}} results
8   {% if hitcount == 1 %}result{% else %}results{%endif%}
9   for "<strong><tt>{{cleanQuery}}</tt></strong>"
10   {% if site %}
11   on <strong><tt>{{site}}</tt></strong>
12   &#160;&#160;&#160;|&#160;&#160;&#160;
13   <a href="{{urlNoSite}}">Show all results</a>
14   {% endif %}
15  </p>
16  <ul class="hits">
17  {% for hit in hits %}
18    {% include 'search/hit.htm' %}
19  {% endfor %}
20  </ul>
21  {% include 'pager.htm' %}
22 {% endif %}