mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 15:21:22 +02:00
- rename 'Sur cette page' to 'Parties' - add padding-top between PARTIES label and toc links
16 lines
496 B
PHP
16 lines
496 B
PHP
<?php
|
|
/**
|
|
* admin-toc.php — sidebar table-of-contents for long admin pages.
|
|
*
|
|
* Uses the same <details class="toc"> markup as the public content pages
|
|
* (about, charte, licence). The link list is populated by admin-toc.js
|
|
* at runtime.
|
|
*/
|
|
?>
|
|
<details class="toc" id="admin-toc" open aria-label="Parties">
|
|
<summary><?= icon('caret-down', 0, 'toc-caret') ?> PARTIES</summary>
|
|
<ul class="toc-list" id="admin-toc-list">
|
|
<!-- populated by admin-toc.js -->
|
|
</ul>
|
|
</details>
|