{% extends "base.html" %} {% load static wagtailcore_tags %} {% block body_class %}template-searchresults{% endblock %} {% block title %}Search{% endblock %} {% block content %}

Search

{% if search_query %}

Default Search Results

{% if default_results %}
    {% for result in default_results %}
  • {{ result }}

    {% if result.search_description %}

    {{ result.search_description }}

    {% endif %}
  • {% endfor %}
{% include "search/pagination.html" with results=default_results %} {% else %}

No results found

{% endif %}

Vector Search Results

{% if vector_results %}
    {% for result in vector_results %}
  • {{ result }}

    {% if result.search_description %}

    {{ result.search_description }}

    {% endif %}
  • {% endfor %}
{% include "search/pagination.html" with results=vector_results %} {% else %}

No results found

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