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
|
|
|
|
)))
|