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:
parent
a4216b63fb
commit
249d865808
5 changed files with 6081 additions and 5842 deletions
3051
_data/artists.json
3051
_data/artists.json
File diff suppressed because it is too large
Load diff
|
@ -6,3 +6,5 @@
|
|||
link: faq.html
|
||||
- name: Streams
|
||||
link: streams.html
|
||||
- name: Songs
|
||||
link: songs.html
|
8853
_data/songs.json
8853
_data/songs.json
File diff suppressed because it is too large
Load diff
|
@ -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
13
songs.html
Normal 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>
|
Loading…
Reference in a new issue