{% extends "layout.html" %} {% block title %}Home{% endblock %} {% block stylesheets %} {% endblock %} {% block loader %} {% if not config.THEME_SETTINGS.loader_enable or config.THEME_SETTINGS.loader_enable.lower() not in ["false", "f", "no", "n"] %}
{% endif %} {% endblock %} {% block nav_main %} {% if this.hero_image and this.show_home_nav %} Home {% endif %} {% if this.main_content %} {% for block in this.main_content.blocks %} {% if block.nav_label %} {{ block.nav_label }} {% endif %} {% endfor %} {% endif %} {% endblock %} {% block body %} {% if this.hero_image %}
{% if this.hero_title %}

{{ this.hero_title }}

{% endif %} {% if this.hero_description %}

{{ this.hero_description }}

{% endif %}
{% endif %} {% if this.main_content %} {% for block in this.main_content.blocks %} {% set extra_classes = '' %} {% if this.starting_block_bg and this.starting_block_bg == 'light' %} {% set extra_classes = extra_classes ~ loop.cycle(' light-bg-section', ' dark-bg-section') %} {% else %} {% set extra_classes = extra_classes ~ loop.cycle(' dark-bg-section', ' light-bg-section') %} {% endif %} {% if not block.title %} {% set extra_classes = extra_classes ~ ' notitle-section' %} {% endif %}
{% if block.video_url and block.video_url.url != '' %}
{% endif %} {% if block.title or block.description %}

{{ block.title }}

{{ block.description }}
{% endif %} {{ block }}
{% endfor %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}