website/src/components/layout.lisp

17 lines
468 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")
(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))))