---
title: Streams
ptitle: Streams
---
{% assign streamx = site.data.streams | reverse %}
Tuesday
{% assign streamm = streamx | where: "host", "!Chill" | where: "live", nil %}
{% for stream in streamm %}
{% include streamlist.html stream=stream %}
{% endfor %}
Thursday
{% assign streamm = streamx | where: "live", nil %}
{% for stream in streamm %}
{% comment %}
{% assign day = stream.date | date: "%w" %}
{% if day == "4" %}
{% include streamlist.html stream=stream %}
{% endif %}
{% endcomment %}
{% assign x = stream.host | slice: 0 %}
{% if stream.live == nil and x != '!' %}
{% include streamlist.html stream=stream %}
{% endif %}
{% endfor %}
Special
{% assign streamm = streamx %}
{% for stream in streamm %}
{% assign x = stream.host | slice: 0 %}
{% if stream.live or x == '!' and stream.host != "!Chill" %}
{% include streamlist.html stream=stream %}
{% endif %}
{% endfor %}