{% extends "layout.html" %} {% block title %}{{ page_title }} > active streams [{{ active_streams|length }}]{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block header %}

{{ page_title }}

{% endblock %} {% block content %} {% if active_streams|length > 1 %} {% set streamcount="many" %} {% elif active_streams|length > 0 %} {% set streamcount="one" %} {% else %} {% set streamcount="none" %} {% endif %} {% if list_streams %}

Active Streams [{{ active_streams|length }}]

{% if streamcount == "none" %}

There are currently no active streams

{% endif %}
{% endif %} {% if display_description %}
{# Read from static/description.md, can be deactivated in config.toml #} {{ description|markdown }}
{% endif %} {% endblock %} {% block footer %} {{ super() }} {% endblock %}