{% extends "base.html" %} {% block content %}

{{ config.extra.hero_title | default(value=config.title) }}

{%- if config.extra.hero_subtitle or config.description %}

{{ config.extra.hero_subtitle | default(value=config.description) }}

{%- endif %} {%- if config.extra.hero_actions %}
{%- for action in config.extra.hero_actions %} {{ action.name }} {%- endfor %}
{%- endif %}
{%- if config.extra.features %}

Features

{%- for feature in config.extra.features %} {%- if feature.url %}

{{ feature.name }}

{{ feature.description }}

{%- else %}

{{ feature.name }}

{{ feature.description }}

{%- endif %} {%- endfor %}
{%- endif %} {%- if section.content %}
{{ section.content | safe }}
{%- endif %} {% endblock content %} {% block extra_body %} {% endblock extra_body %}