first frontend
[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 results for "<tt>{{query}}</tt>":
8  </p>
9  <ul class="hits">
10  {% for hit in hits %}
11    {% include 'search/hit.htm' %}
12  {% endfor %}
13  </ul>
14  {% include 'pager.htm' %}
15 {% endif %}