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

{{ app.title }}

{{ app.description }}

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