{% extends "base.html" %} {% block title %}{{ site_name() }}{% endblock %} {% block head %} {% endblock %} {% block content %} {% if content %}

{{ content.hero_title }}

{% if content.hero_subtitle %}

{{ content.hero_subtitle }}

{% endif %} {% if content.cta.label %} {{ content.cta.label }} {% endif %}
{% if content.sections %}
{% for section in content.sections %}
{% if section.heading %}

{{ section.heading }}

{% endif %} {% if section.body %}

{{ section.body }}

{% endif %}
{% endfor %}
{% endif %} {% else %}

{{ site_tagline() }}

{% endif %} {% endblock %}