{% extends 'base.html' %} {% block title %} Search results for '{{ user_query|default('nothin', true) }}' {% endblock %} {% block content %} {% if user_query %}

Search results for '{{ user_query }}'

{% if results %}

Your search for '{{ user_query }}' was found on these pages:


{% for result in results %}

{{ result.path }}

{{ result.highlight|safe }}
{% endfor %} {% else %}

Sorry, no results were found for '{{ user_query }}'.

{% endif %} {% else %}

Hey, I can't read your mind.

It helps if you provide something to search for.

{% endif %} {% endblock %}