mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 08:09:18 +02:00
23 lines
710 B
PHP
23 lines
710 B
PHP
<!-- Toast region — polled by HTMX after page load -->
|
|
<aside id="toast-region"
|
|
aria-live="polite"
|
|
hx-get="/admin/toast-fragment.php"
|
|
hx-trigger="load"
|
|
hx-swap="innerHTML"
|
|
hx-target="#toast-region">
|
|
</aside>
|
|
|
|
<!-- Markdown cheatsheet container (filled by HTMX on demand) -->
|
|
<div id="md-cheatsheet-container"></div>
|
|
|
|
<?php foreach ($extraJs ?? [] as $js): ?>
|
|
<script src="<?= App::assetV($js) ?>"></script>
|
|
<?php endforeach; ?>
|
|
<?php if (!empty($extraJsInline)): ?>
|
|
<script><?= $extraJsInline ?></script>
|
|
<?php endif; ?>
|
|
<script src="/assets/js/vendor/htmx.min.js"></script>
|
|
<script src="<?= App::assetV('/assets/js/app/htmx-global-setup.js') ?>"></script>
|
|
</body>
|
|
</html>
|