{% if topics and topics.items %}
{% for topic in topics.items %}
{{ topic.author.username[0].upper() }}
{% if topic.is_pinned %} Pinned {% endif %} {% if topic.is_locked %} Locked {% endif %} {{ topic.title }}
by {{ topic.author.username }} · {{ topic.created_at.strftime('%b %d, %Y') }}
{{ topic.reply_count }}
{{ topic.last_activity.strftime('%b %d') }}
{% endfor %}
{% else %}

No topics yet

Be the first to start a discussion!

{% endif %}