HiddenSounds/streams.html
NorbiPeti 4024ebe455
Artist, stream pages, menu, index song listing
- Fixed song listing on artist pages
- Fixed artist page generation
- Sorted artist listing
- Added menu and moved displayed titles to the template
- Linking songs from artist pages
- Added a page for streams and collected the data for it manually
- Implemented Popular and Hidden Songs on the index page
- Bunch of fixes of URLs and such
2019-06-13 01:15:37 +02:00

28 lines
821 B
HTML

---
title: Streams
ptitle: Streams
---
<ul>
{% assign streams = site.data.streams | reverse %}
{% for stream in streams %}
<li>
<h2>
{%- if stream.host == '!Chill' -%} Tuesday Chill Stream
{%- elsif stream.host == '!Throwback' -%} Throwback: {{ stream.throwbackHost }}
{%- elsif stream.host == '!Roundup' -%} Monthly Roundup
{%- else -%} {{- stream.host -}}
{%- endif -%}
{% if stream.live %} - LIVE {%- endif -%}
</h2>
</li>
<li>
{{ stream.date | date: "%a, %b %d, %Y" }}
</li>
{%- if stream.streamer -%} {% comment %} No streamer for future streams {% endcomment %}
<li>
Streamer: {{ stream.streamer }}
</li>
{%- endif -%}
{% endfor %}
</ul>