2025-04-13 12:58:44 -04:00
|
|
|
{% extends "root.html" %} {% block head %}
|
|
|
|
<title>Popular (questions) - {{ config.name }}</title>
|
|
|
|
{% endblock %} {% block body %} {{ macros::nav() }}
|
|
|
|
<main class="flex flex-col gap-2">
|
|
|
|
{{ macros::timelines_nav(selected="popular") }} {{
|
|
|
|
macros::timelines_secondary_nav(posts="/popular",
|
2025-04-14 17:21:52 -04:00
|
|
|
questions="/popular/questions", selected="questions") }}
|
2025-04-13 12:58:44 -04:00
|
|
|
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
<div class="card w-full flex flex-col gap-2">
|
|
|
|
{% for question in list %}
|
|
|
|
{{ components::global_question(question=question, can_manage_questions=false, secondary=true) }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{{ components::pagination(page=page, items=list|length) }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|