2024-02-14 02:41:41 +09:00
|
|
|
(uiop:define-package #:hp/components/layout
|
2024-01-30 00:48:47 +09:00
|
|
|
(:use #:cl)
|
2024-02-09 05:54:51 +09:00
|
|
|
(:local-nicknames (#:pi #:piccolo))
|
2024-01-30 00:48:47 +09:00
|
|
|
(:export #:layout))
|
2024-02-14 02:41:41 +09:00
|
|
|
(in-package #:hp/components/layout)
|
2024-01-30 00:48:47 +09:00
|
|
|
|
2024-02-09 05:54:51 +09:00
|
|
|
(pi:define-element layout ()
|
|
|
|
(pi:h
|
2024-02-03 13:57:35 +09:00
|
|
|
(html
|
2024-02-09 05:54:51 +09:00
|
|
|
(head
|
|
|
|
(title "skyizwhite.dev")
|
2024-02-22 02:20:00 +09:00
|
|
|
(script :type "module" :src "http://localhost:5173/@vite/client")
|
2024-02-24 18:18:24 +09:00
|
|
|
(script :type "module" :src "http://localhost:5173/src/assets/main.js"))
|
2024-02-28 01:24:58 +09:00
|
|
|
(body :hx-ext "debug, alpine-morph, head-support" :class "h-[100svh] w-screen"
|
2024-02-21 20:42:41 +09:00
|
|
|
(main :class "h-full"
|
|
|
|
pi:children)))))
|