{% set home = get_section(path="home/_index.md") %} {% if current_path == '/' %}
{% for page in home.pages %}

{{ page.title }} {{ page.extra.subtitle }}

{{ page.content | safe }}
{% if page.extra.button %}
{% if page.extra.button is containing('http') %} {{ page.extra.button }} {% else %} {{ page.extra.button }} {% endif %}
{% endif %}
{% set url = get_url(path='/' ~ page.relative_path | replace(from='index.md', to=page.extra.imgPath)) %}
{% endfor %}
{% endif %}