fluffle/app/templates_src/error.lisp

10 lines
268 B
Common Lisp
Raw Normal View History

2025-07-20 02:49:01 -04:00
(text "{% extends \"root.lisp\" %} {% block head %}")
(title
(text "Error - {{ name }}"))
2025-07-21 02:11:23 -04:00
(link ("rel" "icon") ("href" "/public/favicon.svg"))
2025-07-20 02:49:01 -04:00
(text "{% endblock %} {% block body %}")
(div
("class" "card")
(p (text "{{ error }}")))
(text "{% endblock %}")