{% extends 'domain/frontend/layouts/base.html.twig' %}
{% block title %}Accueil
{% endblock %}
{% block main_title %}Accueil
{% endblock %}
{% block sub_title %}Accueil
{% endblock %}
{% block body %}
{% if slides is not empty %}
{{ include('domain/frontend/home/sections/hero.html.twig') }}
{% endif %}
{{ include('domain/frontend/home/sections/about-us.html.twig') }}
{% if services is not empty %}
{{ include('domain/frontend/home/sections/our-services.html.twig') }}
{% endif %}
{# {{ include('domain/frontend/home/sections/our-network.html.twig') }}#}
{{ include('domain/frontend/home/sections/baner_partner_industriel.html.twig') }}
{{ include('domain/frontend/home/sections/map.section.html.twig') }}
{% if param is not null %}
{{ include('domain/frontend/home/sections/counter.html.twig') }}
{% endif %}
{% if partners is not empty %}
{{ include('domain/frontend/home/sections/partners.html.twig') }}
{% endif %}
{% if posts is not empty %}
{{ include('domain/frontend/home/sections/news.html.twig') }}
{% endif %}
{% endblock %}
{% block javascript %}
{{ parent() }}
AOS.init({duration: 800, easing: 'ease-in-out',once: true,offset: 100});
{% endblock %}