24 lines
728 B
Common Lisp
24 lines
728 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% - 0.5rem);
|
|
}
|
|
|
|
@media screen and (max-width: 900px) {
|
|
.user_plate {
|
|
width: 100%;
|
|
}
|
|
}"))
|
|
|
|
(text "{% endblock %}")
|