{% extends "picata/dl_view.html" %} {% load wagtailcore_tags stringify %} {% block main_classes %}{{ block.super }} post-list search-results{% endblock %} {% block content %}
{% if query %}

Search results for '{{ query }}'

{% if page_types %}

for pages of type {{ page_types|stringify:"single" }}{% if tags %},
tagged {{ tags|stringify:"single" }} {% endif %}

{% elif tags %}

for pages tagged {{ tags|stringify:"single" }}

{% endif %} {% elif page_types %}

Results for {{ page_types|stringify:"single" }} pages{% if tags %},

tagged {{ tags|stringify:"single" }}

{% else %}{% endif %} {% elif tags %}

Pages tagged {{ tags|stringify:"single" }}

{% else %}

No search specified!

{% endif %}
{% include "picata/_post_list.html" with posts=pages %}
{% endblock %}