{% set search = true %} {% extends "layout.html" %} {% block title %}Search{% endblock %} {% block head %} {% endblock %} {% block breadcrumb %}
  • Search {% endblock %} {% macro searchlink(query, page, perpage, radius) %} /search?query={{ query.replace(" ", "+") }}&page={{ page }}&perpage={{ perpage }}&radius={{ radius }} {% endmacro %} {% block sidebar %}
    {% if count > 10 %} {% endif %}
    You can use fulltext search. Some suggestions: {% endblock %} {% block hamburger %}
    {% if count > 10 %} {% endif %} {% endblock %} {% block pagination %} {% if count > perpage %} {% endif %} {% endblock %} {% block body %}
    {% if count == -1 %}

    This query returned too many search results, please refine it. {% else %} {{ self.pagination() }}

    {% if count == 0 %}No{% else %}{{ count }}{% endif %} result{% if count != 1 %}s{% endif %} {% if count > perpage %} (now showing results {{ perpage * (page - 1) + 1 }}–{{ [perpage * page, count] | sort | first }}) {% endif %}

    {% if misspelt | length > 0 %}

    If the keyword{{ "(s)" if misspelt | length > 1 }} {% for keyword in misspelt %}{{ keyword }}{{ ", " if not loop.last }}{% endfor %} is not giving you the results you expect, then try searching for {{ alternative }}. {% endif %}

    {% if tree %} {% endif %}
    {{ self.pagination() }} {% endif %} {% endblock %}