website/src/components/layout.lisp

19 lines
591 B
Common Lisp
Raw Normal View History

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-21 20:42:41 +09:00
(script :src "/static/vendor/htmx.min.js")
(script :defer t :src "/static/vendor/alpine.min.js")
(link :href "/static/style/main.css" :rel "stylesheet")
(link :href "/static/style/tailwind.css" :rel "stylesheet"))
(body :class "h-[100svh] w-screen"
(main :class "h-full"
pi:children)))))