tetratto/crates/app/src/public/html/misc/error.lisp

27 lines
785 B
Common Lisp
Raw Normal View History

2025-05-30 21:22:53 -04:00
(text "{% extends \"root.html\" %} {% block head %}")
(title (text "{{ error_text }} - {{ config.name }}"))
(text "{% endblock %} {% block body %} {{ macros::nav() }}")
(main
2025-05-31 10:17:49 -04:00
("class" "flex flex-col gap-2")
2025-05-30 21:22:53 -04:00
(div
2025-05-31 10:17:49 -04:00
("class" "card-nest")
2025-05-30 21:22:53 -04:00
(div
2025-05-31 10:17:49 -04:00
("class" "card")
2025-05-30 21:22:53 -04:00
(b (text "Error 😦")))
(div
2025-05-31 10:17:49 -04:00
("class" "card flex flex-col gap-4")
2025-05-30 21:22:53 -04:00
(span (text "{{ error_text }}"))
(div
2025-05-31 10:17:49 -04:00
("class" "w-full flex gap-2")
2025-05-30 21:22:53 -04:00
(a
2025-05-31 10:17:49 -04:00
("class" "button primary") ("href" "/")
2025-05-30 21:22:53 -04:00
(text "Home"))
(a
2025-05-31 10:17:49 -04:00
("class" "button secondary") ("href" "javascript:history.back()")
2025-05-30 21:22:53 -04:00
(text "Back"))))))
(text "{% endblock %}")