{% extends 'base.html' %} {% load wagtailcore_tags i18n %} {% block title %}{% trans "Search" %}{% endblock %} {% block content %}

{% trans 'Search' %}


{% if not page_results and not glossary_results and not document_results %} {% if search_query %} {% trans 'No results found' %} {% else %} {% trans 'Please type something into the search box' %} {% endif %} {% else %} {% if page_results %}

{% blocktrans %}Matching Pages{% endblocktrans %}

{% endif %} {% if glossary_results %}

{% blocktrans %}Matching Glossary{% endblocktrans %}

{% endif %} {% if document_results %}

{% blocktrans %}Matching Documents{% endblocktrans %}

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