{% extends "djpress/testing/base.html" %} {% load djpress_tags %} {% block main %}

Search Results Template of the Testing Theme

{% search_title "h1" pre_text="Search Results for '" post_text="'" %} {% search_errors %} {% if search_errors %} {# Errors are displayed above, don't show results #} {% elif not search_query %}

Enter a search term to find posts.

{% else %} {% for post in posts %} {% post_wrap %} {% post_title outer_tag="h1" %} {% post_content outer_tag="section" %} {% end_post_wrap %} {% empty %}

No search results found for "{{ search_query }}".

{% endfor %} {% pagination_links %} {% endif %} {% endblock main %}