Re-rganize views

This commit is contained in:
Marcus Kammer 2024-05-31 15:07:22 +02:00
parent ddd473e4b1
commit 52cd41b308
Signed by: marcuskammer
GPG key ID: C374817BE285268F
4 changed files with 7 additions and 5 deletions

View file

@ -6,15 +6,17 @@
:licence "MIT" :licence "MIT"
:depends-on ("local-time" "hunchentoot" "dev.metalisp.sbt") :depends-on ("local-time" "hunchentoot" "dev.metalisp.sbt")
:components ((:file "package") :components ((:file "package")
(:module "src/partials" (:module "src/views/partials"
:components :components
((:file "_navbar"))) ((:file "_navbar")))
(:module "src/forms" (:module "src/views/forms"
:components :components
((:file "sus"))) ((:file "sus")))
(:module "src/views"
:components
((:file "pages")))
(:module "src" (:module "src"
:depends-on ("package" "src/partials" "src/forms") :depends-on ("package" "src/views")
:serial t :serial t
:components :components
((:file "pages") ((:file "main")))))
(:file "main")))))