tawny/app/templates_src/error.lisp

10 lines
268 B
Common Lisp
Raw Normal View History

2025-08-20 16:19:08 +00:00
(text "{% extends \"root.lisp\" %} {% block head %}")
(title
(text "Error - {{ name }}"))
(link ("rel" "icon") ("href" "/public/favicon.svg"))
(text "{% endblock %} {% block body %}")
(div
("class" "card")
(p (text "{{ error }}")))
(text "{% endblock %}")