{% if topics|length > 0 %}
{% for topic in topics %}
{{ forum_topic_entry(topic) }}
{% endfor %}
{% else %}
There are no topics in this forum.
{% endif %}
{% endmacro %}
{% macro forum_topic_entry(topic, topic_type, topic_unread, topic_icon) %}
{% set topic_type = topic_type|default(null) %}
{% set topic_unread = topic_unread|default(topic.topic_unread|default(false)) ? 'unread' : 'read' %}
{% set topic_icon = topic_icon|default('https://static.flash.moe/images/topic-icons/topic-%s-%s.png') %}
{% if topic_type is null %}
{% if topic.topic_deleted is defined and topic.topic_deleted is not null %}
{% set topic_type = 'deleted' %}
{% elseif topic.topic_type is defined and topic.topic_type != 0 %}
{% if topic.topic_type == 2 %}
{% set topic_type = 'announcement' %}
{% elseif topic.topic_type == 1 %}
{% set topic_type = 'pinned' %}
{% endif %}
{% elseif topic.topic_locked is defined and topic.topic_locked is not null %}
{% set topic_type = 'locked' %}
{% else %}
{% set topic_type = 'default' %}
{% endif %}
{% endif %}