{% extends "web_layout.html" %} {% load wagtailimages_tags %} {% block title %} : {{page.title}}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% for block in page.body %}
{% if block.block_type == 'section' %} {% include 'Components/WebPageBlocks/sectionBlock.html' %} {% elif block.block_type == 'row' %} {% include 'Components/WebPageBlocks/rowBlock.html' %} {% else %}

{{block.block_type}}

{% endif %}
{% endfor %} {% if request.path == '/services/' %} {% include 'components/services.html' with services=page.get_children %} {% endif %}
{% if page.showFooter %} {% include 'components/footer.html' %} {% endif %} {% endblock %} {% block script %} {% endblock script %}