{% extends 'kjaymiller_com/components/_base.html'%} {% block content %}
{% if hero %}
{% if hero.from_template %} {% include hero.from_template %} {% else %} {% if hero.target %}

{{hero.title}}

{% else %}

{{hero.title}}

{% endif %}
{{hero.content}} {% endif %}
{% endif %} {% if secondary %}
{% if secondary.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 %}