HiddenSounds/songs.html

13 lines
293 B
HTML
Raw Permalink Normal View History

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