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

Search Results For: {{ query }}

{% for result in results %}
{{ result.title }}
{% empty %}

There were no results.

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