tetratto/crates/app/src/public/html/timelines/following_questions.lisp
trisua 0dede99682 add: better mobile ui for timeline pages
add: rename button classes (quaternary->lowered, tertiary->raised)
2025-06-12 13:53:23 -04:00

13 lines
680 B
Common Lisp

(text "{% extends \"root.html\" %} {% block head %}")
(title
(text "Following (questions) - {{ config.name }}"))
(text "{% endblock %} {% block body %} {{ macros::nav() }}")
(main
("class" "flex flex-col gap-2")
(text "{{ macros::timelines_nav(selected=\"following\", posts=\"/following\", questions=\"/following/questions\", secondary_selected=\"questions\") }}")
(div
("class" "card w-full flex flex-col gap-2")
(text "{% for question in list %} {{ components::global_question(question=question, can_manage_questions=false, secondary=true) }} {% endfor %} {{ components::pagination(page=page, items=list|length) }}")))
(text "{% endblock %}")