{% extends "base.tpl" %} {% block header %} {% endblock %} {% block content %}
{% if suggestions %}

Did you mean: {% for option in suggestions %} {{ option }} {% if not loop.last %} or {% endif %} {% endfor %}

{% endif %}
{% if search_text %}
Page {{ page.current }} of {{ total_count }} Results
{% endif %} {% include "pagination.tpl" %}
{% if results %} {% for item in results %}
{{ item.html | safe | trim }}
{% endfor %} {% elif page %} Your search - {{ search_text }} - did not match any documents {% if page.current > 1 %}for page {{ page.current }}{% endif %}. {% endif %}
{% include "pagination.tpl" %}
Indexes updated {{ last_indexed }}
{% endblock %}