2026-02-16 16:11:36 +01:00
|
|
|
<nav class="toc">
|
2026-02-20 17:14:40 +01:00
|
|
|
<div class="light toc_label">table des matières</div>
|
2026-02-16 16:11:36 +01:00
|
|
|
<ul>
|
2026-02-17 18:10:04 +01:00
|
|
|
<?php foreach ($page->tocItems() as $item): ?>
|
2026-03-27 19:18:32 +01:00
|
|
|
<li>
|
|
|
|
|
<a href="#<?= $item['slug'] ?>"><?= $item['title'] ?></a>
|
|
|
|
|
<?php if (!empty($item['children'])): ?>
|
|
|
|
|
<ul>
|
|
|
|
|
<?php foreach ($item['children'] as $child): ?>
|
|
|
|
|
<li><a href="#<?= $child['slug'] ?>"><?= $child['title'] ?></a></li>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
</ul>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
</li>
|
2026-02-17 18:10:04 +01:00
|
|
|
<?php endforeach ?>
|
2026-02-16 16:11:36 +01:00
|
|
|
</ul>
|
2026-02-20 17:14:40 +01:00
|
|
|
</nav>
|