{% extends 'base.html'%} {% block content %} {% if hero %} {% if hero.target %} {{hero.title}} {% else %} {{hero.title}} {% endif %} {% if hero.from_template %} {% include hero.from_template %} {% else %} {{hero.content}} {% endif %} {% endif %} {% if secondary %} {% if hero.target %} {{secondary.title}} {% else %} {{secondary.title}} {% endif %} {% if secondary.from_template%} {% include secondary.from_template %} {% else %} {{secondary.content}} {% endif %} {% endif %} {% if other %} {% if other.target %} {{other.title}} {% else %} {{other.title}} {% endif %} {% for other_section in other['sections'] %} {% if other_section.target %} {{other_section.title}} {% else %} {{other_section.title}} {% endif %} {% if other_section.from_template %} {% include other_section.from_template %} {% else %} {{other_section.content}} {% endif %} {% endfor %} {% endif %} {% endblock %}
{{other_section.content}}
{% endif %} {% endfor %} {% endif %}