fluffle/app/templates_src/error.lisp
2025-07-21 02:11:23 -04:00

10 lines
304 B
Common Lisp

(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 "{{ components::footer() }}")
(text "{% endblock %}")