Rename ui to components
This commit is contained in:
parent
622252d0b5
commit
db2c70496d
3 changed files with 6 additions and 6 deletions
src/components
16
src/components/layout.lisp
Normal file
16
src/components/layout.lisp
Normal file
|
@ -0,0 +1,16 @@
|
|||
(uiop:define-package #:hp/components/layout
|
||||
(:use #:cl)
|
||||
(:local-nicknames (#:pi #:piccolo))
|
||||
(:export #:layout))
|
||||
(in-package #:hp/components/layout)
|
||||
|
||||
(pi:define-element layout ()
|
||||
(pi:h
|
||||
(html
|
||||
(head
|
||||
(title "skyizwhite.dev")
|
||||
(script :src "/static/htmx.min.js")
|
||||
(link :href "/static/main.css" :rel "stylesheet")
|
||||
(link :href "/static/tailwind.css" :rel "stylesheet"))
|
||||
(body :class "h-[100svh]"
|
||||
pi:children))))
|
Loading…
Add table
Add a link
Reference in a new issue