{% extends "base.html" %} {% block content %} {%- if config.extra.hero_title or config.extra.hero_subtitle %}

{{ 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 %}
{%- endif %} {%- if config.extra.features %}

Features

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

{{ feature.name }}

{{ feature.description }}

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