<script>
jQuery(document).ready(function($) {
  // Sélection de chaque titre d’accordéon
  $('.et_pb_toggle_title').each(function(index, el) {
    // Génération d’un ID unique pour la zone contrôlée
    var panelID = 'accordion-panel-' + index;
    
    // Ajout de l’attribut aria-controls sur le titre
    $(this).attr('aria-controls', panelID);
    
    // Par défaut, l’accordéon est fermé, donc aria-expanded à false
    $(this).attr('aria-expanded', 'false');
    
    // Ajout de l’ID sur la zone de contenu correspondante
    $(this).closest('.et_pb_toggle').find('.et_pb_toggle_content').attr('id', panelID);
  });

  // Mise à jour de l’état aria-expanded lors du clic
  $('.et_pb_toggle_title').on('click', function() {
    var $this = $(this);
    var isExpanded = $this.attr('aria-expanded') === 'true';
    // Inverse l’état au clic
    $this.attr('aria-expanded', !isExpanded);
  });
});
</script>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//legs.ccite.fr/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://legs.ccite.fr/page-sitemap.xml</loc>
		<lastmod>2025-07-24T14:15:48+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://legs.ccite.fr/local-sitemap.xml</loc>
		<lastmod>2025-09-30T17:06:45+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->