tetratto/crates/app/src/public/html/misc/error.lisp
2025-08-03 23:24:57 -04:00

26 lines
791 B
Common Lisp

(text "{% extends \"root.html\" %} {% block head %}")
(title (text "{{ error_text }} - {{ config.name }}"))
(text "{% endblock %} {% block body %} {{ macros::nav() }}")
(main
("class" "flex flex_col gap_2")
(div
("class" "card_nest")
(div
("class" "card small")
(b (text "Error 😦")))
(div
("class" "card flex flex_col gap_4")
(span (text "{{ error_text }}"))
(div
("class" "w_full flex gap_2")
(a
("class" "button primary") ("href" "/")
(text "Home"))
(a
("class" "button secondary") ("href" "javascript:history.back()")
(text "Back"))))))
(text "{% endblock %}")