website/src/view/components/layout.lisp

14 lines
268 B
Common Lisp
Raw Normal View History

2024-04-20 07:45:44 +09:00
(defpackage #:hp/view/components/layout
2024-04-19 13:04:30 +09:00
(:use #:cl)
(:local-nicknames (#:pi #:piccolo))
(:export #:layout))
2024-04-20 07:45:44 +09:00
(in-package #:hp/view/components/layout)
2024-04-19 13:04:30 +09:00
(pi:define-element layout ()
(pi:h
2024-04-20 07:45:44 +09:00
(body
2024-04-19 13:04:30 +09:00
; header
(main pi:children)
; footer
)))