{% extends 'base.html' %} {% load wagtailmetadata_tags %} {% block meta_tags %} {% meta_tags %} {% endblock meta_tags %} {% block content %} {% if page.slug != "main" %}
{{page.title}}
{% endif %} {% if page.bannercontent %}
{% for slide in page.bannercontent %}
{{slide.value.image.title}}
{% endfor %}
{% for slide in page.bannercontent %} {% endfor %}
{% endif %}
{% for slides in page.specific.hero %} {% for rows in slides.value %}
{% for tiles in rows.value %}
{{tiles.value.page.specific.search_image.title}}

{{tiles.value.page.title|safe}}

{% endfor %}
{% endfor %} {% endfor %}
{% for block in page.body %} {% if block.block_type == 'section' %} {% include 'components/PageBlock/sectionBlock.html' %} {% elif block.block_type == 'row' %} {% include 'components/PageBlock/rowBlock.html' %} {% else %} {{block.block_type}} {% endif %} {% endfor %} {% if page.slug == "main" %}
{% csrf_token %}
{% endif %} {% endblock content %} {% block script %} {% endblock script %}