{% extends "base.html" %} {% load wagtailcore_tags %} {% load waggylabs_filters %} {% load waggylabs_tags %} {% block title %}Search{% endblock %} {% block content %}

Search

{% csrf_token %}
{% if search_results %} {% for result_page in search_results %}

{% search_results_title result_page search_tokens %}

{% search_results_body result_page search_tokens %}

{% endfor %} {% elif search_query %} No results found {% else %} Please type something into the search box {% endif %} {% endblock %}