Simplify rendering

This commit is contained in:
Akira Tempaku 2025-05-03 21:06:39 +09:00
commit 1b217da311
Signed by: paku
GPG key ID: 5B4E8402BCC50607
6 changed files with 18 additions and 38 deletions
src/routes

View file

@ -10,10 +10,8 @@
(defcomp ~page ()
(hsx
(p "coming soon")))
(p "coming soon")))
(defun handle-get (params)
(declare (ignore params))
(list :body (~page)
:metadata *metadata*
:cache :dynamic))
(list (~page) *metadata*))