tetratto/crates/app/src/public/html/profile/following.lisp
trisua a6140f7c8c add: forges ui
TODO: forges tickets feed, posts open/closed state
2025-06-09 16:45:36 -04:00

24 lines
734 B
Common Lisp

(text "{% extends \"profile/base.html\" %} {% block content %}")
(div
("class" "card-nest")
(div
("class" "card small flex gap-2 items-center")
(text "{{ icon \"users-round\" }}")
(span
(text "{{ text \"auth:label.following\" }}")))
(div
("class" "card flex flex-wrap gap-4 flex-collapse")
(text "{% for item in list %} {{ components::user_plate(user=item[1], secondary=true) }} {% endfor %} {{ components::pagination(page=page, items=list|length) }}")))
(style
(text ".user_plate {
width: calc(50% - var(--pad-2));
}
@media screen and (max-width: 900px) {
.user_plate {
width: 100%;
}
}"))
(text "{% endblock %}")