{% extends 'cms/base_cms.html' %} {% load wagtailcore_tags %} {% block hero_area %} {{ page.hero }} {% endblock hero_area %} {% block content %} {% if not page.body and not page.hero %} {% include 'cms/empty_page.html' %} {% else %}
{% for body_block in page.body %}
{% include_block body_block with block_id=body_block.id %}
{% endfor %}
{% endif %} {% endblock content %}