website/src/routes/index.lisp

19 lines
426 B
Common Lisp
Raw Normal View History

2024-04-12 03:49:34 +09:00
(defpackage #:hp/routes/index
2024-02-02 01:07:19 +09:00
(:use #:cl)
2024-02-09 05:54:51 +09:00
(:local-nicknames (#:pi #:piccolo))
2024-04-19 13:04:30 +09:00
(:local-nicknames (#:view #:hp/view))
2024-04-14 16:40:47 +09:00
(:export #:handle-get))
2024-02-02 01:07:19 +09:00
(in-package #:hp/routes/index)
2024-02-09 05:54:51 +09:00
(pi:define-element page ()
(pi:h
2024-04-19 03:56:30 +09:00
(section
(h1 :class "text-red-400"
"Hello, World!")
2024-04-12 03:49:34 +09:00
(a :href "/about" :hx-boost "true"
"About"))))
2024-02-02 01:07:19 +09:00
2024-04-14 16:40:47 +09:00
(defun handle-get (params)
2024-02-02 01:07:19 +09:00
(declare (ignore params))
2024-04-12 16:59:11 +09:00
(view:render (page)))