{% extends "index.html" %} {% block content %} {# Hero Section #} {% if section.extra.hero %}

{{ section.extra.hero.title }}

{{ section.extra.hero.description }}

{% if section.extra.hero.cta_buttons %}
{% for button in section.extra.hero.cta_buttons %} {% if button.url is starting_with("/") %} {% set path = get_url(path=button.url, lang=lang) %} {% else %} {% set path = button.url %} {% endif %} {{ button.text }} {% endfor %}
{% endif %}
{% endif %} {% endblock content %}