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

33 lines
1.2 KiB
Common Lisp

(text "{% extends \"root.html\" %} {% block head %}")
(title
(text "{{ profile.username }} (banned) - {{ config.name }}"))
(text "{% endblock %} {% block body %} {{ macros::nav() }}")
(main
("class" "flex flex_col gap_2")
(div
("class" "card_nest")
(div
("class" "card small flex items_center justify_between gap_2")
(div
("class" "flex items_center gap_2")
(text "{{ components::avatar(username=profile.username, size=\"24px\") }}")
(span
(text "{{ profile.username }}")))
(b
("class" "notification chip")
(text "{{ text \"auth:label.banned\" }}")))
(div
("class" "card flex flex_col gap_2")
(span
(text "{{ text \"auth:label.banned_message\" }}"))
(div
("class" "card w_full secondary flex gap_2")
(a
("href" "/")
("class" "button red lowered")
(text "{{ icon \"x\" }}")
(span
(text "{{ text \"general:action.back\" }}")))))))
(text "{% endblock %}")