{% extends 'base.html' %} {% load wagtailimages_tags %} {% load wagtail_srcset_tags %} {% load static %} {% block meta_tags %} {% endblock meta_tags %} {% block style %} {% endblock style %} {% block content %} {% if page.slug != "home" %}
{{page.title}}
{% endif %} {% for block in page.body %} {% if block.block_type == 'carousel' %} {% include 'components/ampCarousel.html' with content=block.value.content width=block.value.width height=block.value.height delay=block.value.timer %} {% elif 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 %} {% endblock content %} {% block footer %} {% if page.show_footer %} {% include 'components/footer.html' %} {% endif %} {% endblock footer %} {% block script %} {% endblock script %}