mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
CSS: - Remove duplicate 'background' fallbacks in base.css, header.css, search.css (solid color declared before gradient — gradient always wins) - Remove duplicate 'padding' in admin.css .admin-import-log JS (biome --write safe fixes applied): - function() → arrow functions in all IIFEs and callbacks - forEach/callback → arrow functions - evaluePtrn → parseInt(x, 10) in admin-contacts-form.js - Cleaned label text in build.mjs lint step Remaining warnings are intentional: !important overrides, descending specificity (admin.css cascade), noUnusedVariables (functions exported to window/onclick), useTemplate style preference.
16 lines
510 B
PHP
16 lines
510 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="Sur cette page">
|
|
<summary><?= icon('caret-down', 0, 'toc-caret') ?> SUR CETTE PAGE</summary>
|
|
<ul class="toc-list" id="admin-toc-list">
|
|
<!-- populated by admin-toc.js -->
|
|
</ul>
|
|
</details>
|