{% extends "templates/base.html" %} {% block title %}Search results{% if query %} for "{{ query }}"{% endif %} | {{ title }} {% endblock %} {% block outer_content %}
{% if query %} {% if not results.entries %}

Sorry we couldn't find "{{ query }}" in {{ title }}

{% else %}

Search results for "{{ query }}" in {{ title }}

{% endif %} {% else %}

Sorry you didn't write a query

{% endif %}
{% with search_action=search_action, siteSearch=siteSearch, placeholder=placeholder %} {% include "templates/docs/shared/_search-box.html" %} {% endwith %} {% if results %} {% if results.entries %} {% for item in results.entries %}
{% endfor %}
{% if results.queries and results.queries.previousPage %} ‹ Previous {% endif %}
{% if results.queries and results.queries.nextPage %} Next › {% endif %}
{% else %}

Why not try widening your search?

You can do this by:

  • Adding alternative words or phrases
  • Using individual words instead of phrases
  • Trying a different spelling
{% endif %} {% endif %} {% endblock outer_content %}