{% if threads|length == 1 %} {% else %} {% endif %} {% include "styles.html" %} {% include "import-map.html" %}
{% include "nav.html" %}

{{ app.title }}

{{ app.description }}

{% if tags is defined%} {% with tags=tags %} {% include "tag-pills.html" %} {% endwith %} {% endif %}
← Back
{% for thread in threads %} {% with thread=thread, parent_id=thread.id, is_thread=threads|length > 1, server=app.server %} {% include "card.html" %} {% endwith %} {% if thread.descendants is defined %} {% for descendant in thread.descendants %} {% with thread=descendant, parent_id=thread.id, server=app.server %} {% include "card.html" %} {% endwith %} {% endfor %} {% endif %} {% endfor %} ↑ Top