first frontend
[phinde.git] / data / templates / search / list.htm
diff --git a/data/templates/search/list.htm b/data/templates/search/list.htm
new file mode 100644 (file)
index 0000000..4341600
--- /dev/null
@@ -0,0 +1,15 @@
+{% if hitcount == 0 %}
+ <p>
+  Sorry, no results for "<tt>{{query}}</tt>".
+ </p>
+{% else %}
+ <p>
+  Found {{hitcount}} search results for "<tt>{{query}}</tt>":
+ </p>
+ <ul class="hits">
+ {% for hit in hits %}
+   {% include 'search/hit.htm' %}
+ {% endfor %}
+ </ul>
+ {% include 'pager.htm' %}
+{% endif %}