{% extends "main/master.html" %} {% block content %}

Search Results

{% if query %}

Found {{ results|length }} result{% if results|length != 1 %}s{% endif %} for "{{ query }}"

{% endif %}
{% if results %} {% for post in results %}

{{ post.title }}

{{ post.description }}
Read More
{% endfor %} {% elif query %}
No posts found matching your search.

Suggestions:

{% endif %}
{% endblock %}