Implement layout (wip)

This commit is contained in:
Akira Tempaku 2024-04-25 17:19:40 +09:00
parent 0f7978cc5c
commit b62a2dd8c4
13 changed files with 69 additions and 36 deletions
src/components/layout

View file

@ -0,0 +1,9 @@
(defpackage #:hp/components/layout/footer
(:use #:cl)
(:local-nicknames (#:pi #:piccolo))
(:export #:layout-footer))
(in-package #:hp/components/layout/footer)
(pi:define-element layout-footer ()
(pi:h
(footer :data-css "components/layout/footer.css")))