This commit is contained in:
Akira Tempaku 2024-04-12 03:49:34 +09:00
parent 0441d03206
commit 21c2d8aa99
18 changed files with 130 additions and 117 deletions
src/components

View file

@ -1,18 +0,0 @@
(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 "/js/htmx.min.js")
(script :src "/js/htmx-ext/head-support.js")
(script :src "/js/alpine.min.js" :defer t)
(link :rel "stylesheet" :href "/style/main.css" type="text/css"))
(body :hx-ext "head-support"
(main
pi:children)))))