2026-02-16 16:11:36 +01:00
|
|
|
<nav class="toc">
|
2026-02-17 17:32:27 +01:00
|
|
|
<div class="light toc_label if_toc">Sommaire</div>
|
2026-02-16 16:11:36 +01:00
|
|
|
<ul>
|
|
|
|
|
<?php
|
|
|
|
|
preg_match_all('/<h3>(.*?)<\/h3>/', $content, $titres);
|
|
|
|
|
foreach ($titres[1] as $index => $titre) {
|
|
|
|
|
$slug = Str::slug($titre);
|
|
|
|
|
echo '<li><a href="#' . $slug . '">' . $titre . '</a></li>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
|