HiddenSounds/songs.html
Norbi Peti 249d865808
List update, fix, song list
- Upload ordered and updated list
- Add today's streamer and fixed a live attribute
- Add song listing page (#3)
2019-06-13 22:27:59 +02:00

13 lines
293 B
HTML

---
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>