Update ningle-fbr

This commit is contained in:
Akira Tempaku 2024-04-14 16:40:47 +09:00
commit a8062f1d57
3 changed files with 5 additions and 5 deletions
src/routes

View file

@ -2,7 +2,7 @@
(:use #:cl)
(:local-nicknames (#:pi #:piccolo))
(:local-nicknames (#:view #:hp/view))
(:export #:on-get))
(:export #:handle-get))
(in-package #:hp/routes/index)
(pi:define-element page ()
@ -12,6 +12,6 @@
(a :href "/about" :hx-boost "true"
"About"))))
(defun on-get (params)
(defun handle-get (params)
(declare (ignore params))
(view:render (page)))