Component names now reflect filesystem location using / as path separator and : as namespace separator for shared components: ~sx-header → ~layouts/header ~layout-app-body → ~shared:layout/app-body ~blog-admin-dashboard → ~admin/dashboard 209 files, 4,941 replacements across all services. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
713 B
Plaintext
21 lines
713 B
Plaintext
;; Account layout defcomps — fully self-contained via IO primitives.
|
|
;; Registered via register_sx_layout("account", ...) in __init__.py.
|
|
|
|
;; Full page: root header + auth header row in header-child
|
|
(defcomp ~layouts/full ()
|
|
(<> (~root-header-auto)
|
|
(~shared:layout/header-child-sx
|
|
:inner (~auth-header-row-auto))))
|
|
|
|
;; OOB (HTMX): auth row + root header, both with oob=true
|
|
(defcomp ~layouts/oob ()
|
|
(<> (~auth-header-row-auto true)
|
|
(~root-header-auto true)))
|
|
|
|
;; Mobile menu: auth section + root nav
|
|
(defcomp ~layouts/mobile ()
|
|
(<> (~shared:layout/mobile-menu-section
|
|
:label "account" :href "/" :level 1 :colour "sky"
|
|
:items (~auth-nav-items-auto))
|
|
(~root-mobile-auto)))
|