{% extends settings.utils.LayoutSettings.base_template %} {% load wagtailcore_tags %} {% block main_content %}
{% include 'includes/breadcrumbs.html' %} {% include 'includes/optional-introduction.html' with value=self %}
{% for key in glossary_items.keys %} {{key|upper}}   {% endfor %}

Glossary items{% if search_query %} matching "{{ search_query }}"{% endif %}

{% for key, items in glossary_items.items %}

{{key|upper}}


{% for glossary_item in items %}
{% if glossary_item.link %}{% endif %}

{{ glossary_item.title }}

{% if glossary_item.link %}
{% endif %} {{ glossary_item.body|richtext }}
{% empty %}

No results found for {{ search_query }}

{% endfor %} {% endfor %}
{% include "includes/highlight.html" %}
{% include "includes/row_siblings_in_section.html" with page=self class="p-3 p-lg-5 mb-4" %}
{% endblock %}