26 lines
791 B
Common Lisp
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 %}")
|