{# templates/pages/sitemap.html.twig #}
{% extends 'base.html.twig' %}
{% block title %}Plan du site - CSP Chauffage{% endblock %}
{% block body %}
Plan du site
{# 1. ACCUEIL #}
-
{# 2. NOTRE HISTOIRE #}
-
{# 3. CHAUFFAGE (Parent + Enfants) #}
-
{# Sous-liste #}
{% if heatingServices is not empty %}
{% for service in heatingServices %}
-
{% endfor %}
{% endif %}
{# 4. PLOMBERIE (Parent + Enfants) #}
-
{# Sous-liste #}
{% if plumbingServices is not empty %}
{% for service in plumbingServices %}
-
{% endfor %}
{% endif %}
{# 5. RÉALISATIONS (Parent + Enfants) #}
-
{# Sous-liste #}
{% if realizations is not empty %}
{% for realization in realizations %}
-
{% endfor %}
{% endif %}
{# 6. PAGES TECHNIQUES & LÉGALES #}
-
-
-
-
{# 7. CONNEXION #}
-
{% endblock %}