mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
16 lines
472 B
PHP
16 lines
472 B
PHP
<?php
|
|
/**
|
|
* admin-toc.php — sidebar table-of-contents for long admin pages.
|
|
*
|
|
* Rendered as an <aside> inside <main>, before the <article> content.
|
|
* Uses IntersectionObserver to highlight the active section.
|
|
*/
|
|
?>
|
|
<aside id="admin-toc" class="admin-toc" aria-label="Sur cette page">
|
|
<nav class="admin-toc-list" id="admin-toc-list">
|
|
<!-- populated by JS -->
|
|
</nav>
|
|
</aside>
|
|
|
|
<script src="<?= App::assetV('/assets/js/app/admin-toc.js') ?>"></script>
|