{% extends 'base.html' %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block content %}
{% if page.hero %}
{% for block in page.hero %}
{% image block.value.image original as img__hero %}
{% endfor %}
{% endif %}
{{ self.title }}
{{ self.body|richtext }}
{% if page.gallery %}
{% for block in page.gallery %}
- {% include_block block %}
{% endfor %}
{% endif %}
{% endblock %}