{% include "styles.html" %}
{% include "nav.html" %}

{{ app.title }}

{{ app.description }}

← Back

{{ tag }}

{% for thread in threads %} {% with is_tag=tag!=None, 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 is_tag=tag!=None, thread=descendant, parent_id=thread.id, server=app.server%} {% include "card.html" %} {% endwith %} {% endfor %} {% endif %} {% endfor %} ↑ Top