{% extends "container/public.html" %} {% block content %}
{% if forums.len() > 0 %} {% for forum in forums %}
{{ forum.label }}
{% if let Some(description) = forum.description %}{{ description }}
{% endif %}
{#
Replies:
{{ thread.post_count }}
Views:
{{ thread.view_count }}
#}
{% endfor %} {% else %} No forums available. {% endif %}
{% endblock %}