NorbiPeti
249d865808
- Upload ordered and updated list - Add today's streamer and fixed a live attribute - Add song listing page (#3)
13 lines
No EOL
293 B
HTML
13 lines
No EOL
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> |