{% extends "themes/" + sysSettings.systemTheme + "/layout.html" %} {% block head %} {{sysSettings.siteName}} {% endblock %} {% block body %}
{% if sysSettings.serverMessage != "" and sysSettings.serverMessage != None %}

{{sysSettings.serverMessageTitle}}

{{sysSettings.serverMessage|markdown}}
{% endif %}
Live Now
{% if streamList == [] %} No Live Streams Online... {% endif %} {% for stream in streamList %}
{{stream.streamName|limit_title}}
{{stream.channel.channelName}} Live{% if stream.channel.protected and sysSettings.protectionEnabled %} Protected{% endif %}
{{stream.topic|get_topicName}}
{{stream.id|get_Stream_Upvotes}} {{stream.currentViewers}} {{stream.totalViewers}}
{% endfor %}

Videos
{% for video in videoList %}
{{video.channelName|limit_title}}
{% if video.protected and sysSettings.protectionEnabled %} Protected{% endif %}
{{video.ChanName}} {{video.videoDate|normalize_date}}
{{video.owningUser|get_userName}} {{video.topic|get_topicName}}
{{video.id|get_Video_Upvotes}} {{video.views}} {{video.id|get_Video_Comments}} {{video.length|hms_format}}
{% endfor %}
Clips
{% for clip in clipList %}
{{clip.clipName|limit_title}}
Clip{% if clip.protected and sysSettings.protectionEnabled %} Protected{% endif %}
{{clip.channelName}} {{clip.videoDate|normalize_date}}
{{clip.owningUser|get_userName}} {{clip.topic|get_topicName}}
{{clip.id|get_Clip_Upvotes}} {{clip.views}} {{clip.length|hms_format}}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}