{% extends "base.html" %} {% load el_pagination_tags wagtailcore_tags wagtailimages_tags core_tags %} {% block body_class %}default-container{% endblock %} {% block content %} {% if search_results %}
{% for page in search_results %} {% get_translation page.get_parent_section as parent_section %} {% if page.image %}
{% image page.image fill-200x200 %} {% image parent_section.image width-40 as section_image %}
{{ parent_section.title }}
{% if page.title_highlight %}

{{page.title_highlight|safe}}

{% else %}

{{page.title}}

{% endif %} {% if page.subtitle_highlight or page.body_highlight %}

{% if page.subtitle_highlight %} {{page.subtitle_highlight|safe}} {% elif page.body_highlight %} {{page.body_highlight|safe}} {% endif %}

{% else %}

{{page.subtitle}}

{% endif %}
{% else %}
{{ parent_section.title }}
{% if page.title_highlight %}

{{page.title_highlight|safe}}

{% else %}

{{page.title}}

{% endif %} {% if page.subtitle_highlight or page.body_highlight %}

{% if page.subtitle_highlight %} {{page.subtitle_highlight|safe}} {% elif page.body_highlight %} {{page.body_highlight|safe}} {% endif %}

{% else %}

{{page.subtitle}}

{% endif %}
{% endif %} {% endfor %}
{% else %}

{% trans "No search results for " %}
`{{ search_query }}`


{% endif %} {% endblock %} {% block search %} {% if search_results %} {% include "search/search_block.html" %} {% endif %} {% endblock %}