List update, fix, song list

- Upload ordered and updated list
- Add today's streamer and fixed a live attribute
- Add song listing page (#3)
This commit is contained in:
Norbi Peti 2019-06-13 22:24:35 +02:00
parent a4216b63fb
commit 249d865808
No known key found for this signature in database
GPG key ID: DBA4C4549A927E56
5 changed files with 6081 additions and 5842 deletions

File diff suppressed because it is too large Load diff

View file

@ -5,4 +5,6 @@
- name: FAQ
link: faq.html
- name: Streams
link: streams.html
link: streams.html
- name: Songs
link: songs.html

File diff suppressed because it is too large Load diff

View file

@ -76,6 +76,7 @@
- date: '2019-05-02'
host: 'Lucy Daydream'
streamer: 'Lucy Daydream'
live: true
- date: '2019-05-07'
host: '!Chill'
streamer: 'Anna Yvette'
@ -111,6 +112,7 @@
streamer: 'Cara Leigh'
- date: '2019-06-13'
host: 'Au5'
streamer: 'Approaching Nirvana'
- date: '2019-06-20'
host: 'Sublab'
- date: '2019.06.27'

13
songs.html Normal file
View file

@ -0,0 +1,13 @@
---
layout: default
title: All Songs
ptitle: All Songs
---
<div id="songs" class="content">
<div id="container">
{% assign songs = site.data.songs | sort: 'popularity' %}
{% for song in songs %}
{% include songlist.html %}
{% endfor %}
</div>
</div>