2025-12-02 08:29:54 +00:00
|
|
|
{{define "head-scripts"}}
|
|
|
|
|
<!-- Device Detection - Detect real mobile devices vs desktop browser -->
|
|
|
|
|
<script src="/static/js/device-detection.js"></script>
|
|
|
|
|
|
2026-05-14 12:59:30 +01:00
|
|
|
<!-- HTMX 2.0.10 (self-hosted) -->
|
|
|
|
|
<script src="/static/htmx/htmx.min.js"></script>
|
2025-12-02 08:29:54 +00:00
|
|
|
|
|
|
|
|
<!-- Hyperscript Functions - Must load BEFORE hyperscript library -->
|
|
|
|
|
<!-- NOTE: cv-functions.js removed - hyperscript def statements are globally available -->
|
|
|
|
|
<!-- ✅ NO def limit with latest hyperscript - organized by category -->
|
|
|
|
|
<script type="text/hyperscript" src="/static/hyperscript/utils._hs"></script>
|
|
|
|
|
<script type="text/hyperscript" src="/static/hyperscript/toggles._hs"></script>
|
|
|
|
|
<script type="text/hyperscript" src="/static/hyperscript/hover-sync._hs"></script>
|
|
|
|
|
<script type="text/hyperscript" src="/static/hyperscript/keyboard._hs"></script>
|
|
|
|
|
<script type="text/hyperscript" src="/static/hyperscript/zoom._hs"></script>
|
|
|
|
|
<script type="text/hyperscript" src="/static/hyperscript/pdf-modal._hs"></script>
|
|
|
|
|
|
|
|
|
|
<!-- Color Theme System (JavaScript - hyperscript had parsing issues with colons in strings) -->
|
|
|
|
|
<script src="/static/js/color-theme.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- NOTE: footer-buttons-interaction.js removed - moved to hyperscript on footer element -->
|
|
|
|
|
<!-- NOTE: scroll-at-bottom-handler.js removed - duplicate of handleScroll() in utils._hs -->
|
|
|
|
|
|
2026-05-14 12:59:30 +01:00
|
|
|
<!-- Hyperscript 0.9.91 (self-hosted) -->
|
|
|
|
|
<script src="/static/hyperscript/_hyperscript.min.js"></script>
|
2025-12-02 08:29:54 +00:00
|
|
|
|
|
|
|
|
<!-- Ninja Keys - Lazy loaded on CMD+K (see body-scripts for loader) -->
|
|
|
|
|
|
|
|
|
|
<!-- Iconify - Load synchronously for immediate rendering -->
|
2026-05-14 12:59:30 +01:00
|
|
|
<!-- Using jsdelivr CDN (more reliable than code.iconify.design) -->
|
2025-12-02 08:29:54 +00:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/iconify-icon@2.1.0/dist/iconify-icon.min.js"></script>
|
|
|
|
|
{{end}}
|