{% extends "base.html" %} {% block content %}
threads
{% if let Some(user) = current_user %} + new thread {% endif %} {% if threads.is_empty() %}
no threads yet
be the first to start a thread!
{% else %} {% for twa in threads %}
{{ twa.thread.title }}
by {{ twa.author.username }} · {{ twa.thread.created_at }}
{% endfor %} {% endif %} {% endblock %}