{% extends "base.html" %} {% block title %}Multithreaded{% endblock %} {% block head %}{% endblock %} {% block header %}{% include "partials/site_header.html" %}{% endblock %} {% block content %}
{% if communities.is_empty() %}
{% if viewing_archived %}No archived communities.{% else %}No communities yet.{% endif %}
{% else %} {% for c in communities %} {% endfor %}
Community Categories Threads
{% if let Some(desc) = c.description %}
{{ desc }}
{% endif %}
{{ c.category_count }} {{ c.thread_count }}
{% include "partials/pagination.html" %} {% endif %}
{% endblock %}