{% extends 'simple_forums/base.html' %} {% block page_title %}Search{% endblock %} {% block content %}
{% if query %}

Search Results For: {{ query }}

{% for result in results %}
{{ result.get_title }}

{{ result.get_search_description }}

{% empty %}

There were no results.

{% endfor %} {% endif %} {% endblock %}