13 lines
484 B
Common Lisp
13 lines
484 B
Common Lisp
;;;; cl-scopes/frontend/cs-hx - frontend (http response) definitions
|
|
;;;; for embedding HTML fragments in pages generated by the `cyberscopes` Hugo theme
|
|
;;;; with dynamic elements handled by `HTMX`.
|
|
|
|
(defpackage :scopes/frontend/cs-hx
|
|
(:use :common-lisp)
|
|
(:local-nicknames (:dom :scopes/web/dom)
|
|
(:response :scopes/web/response))
|
|
(:export #:render-content #:response))
|
|
|
|
(in-package :scopes/frontend/cs-hx)
|
|
|
|
(defclass response (response:html-response) ())
|