{% extends "base.html" %} {% block title %}#{{ channel.display_name() }} — {{ guild.name }}{% endblock %} {% block head %}{% endblock %} {% block content %}

#{{ channel.display_name() }}

{% if thread_count > 0 %} {{ thread_count }} thread{% if thread_count != 1 %}s{% endif %} -> {% endif %}
{% if let Some(topic) = channel.topic.as_deref() %}
{{ topic }}
{% endif %}
{% if messages.is_empty() %}

No messages on this page.

{% else %}
{% include "_message_list.html" %}
{% endif %} {% endblock %}