aboutsummaryrefslogtreecommitdiff
path: root/data/templates/search/list.htm
blob: 97c173133fde8c233620126e21dbee4a59541c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% if hitcount == 0 %}
 <div style="text-align: center; margin-top: 5ex; margin-bottom: 5ex">
  No results
  for "<strong><tt>{{cleanQuery}}</tt></strong>"
  {% if site %}
  on <strong><tt>{{site}}</tt></strong>
  &#160;&#160;&#160;|&#160;&#160;&#160;
  <a href="{{urlNoSite}}">Show all results</a>
  {% endif %}
 </div>
{% else %}
<p class="resultinfo">
  {{hitcount}}
  {% if hitcount == 1 %}result{% else %}results{%endif%}
  for "<strong><tt>{{cleanQuery}}</tt></strong>"
  {% if site %}
  on <strong><tt>{{site}}</tt></strong>
  &#160;&#160;&#160;|&#160;&#160;&#160;
  <a href="{{urlNoSite}}">Show all results</a>
  {% endif %}
 </p>
 <ul class="hits">
 {% for hit in hits %}
   {% include hitTemplate %}
 {% endfor %}
 </ul>
 {% include 'pager.htm' %}
{% endif %}