2019-05-23 16:39:14 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Hidden Sounds
|
2019-06-12 23:15:12 +00:00
|
|
|
ptitle: Hidden Sounds Unofficial (Fan) Website
|
2019-05-23 16:39:14 +00:00
|
|
|
---
|
2019-05-23 23:11:12 +00:00
|
|
|
<div id="popularSongs" class="content">
|
2019-05-13 11:45:10 +00:00
|
|
|
<h2>Popular Songs</h2>
|
2019-05-23 12:41:48 +00:00
|
|
|
<div id="popularContainer">
|
2019-06-12 23:15:12 +00:00
|
|
|
{% assign popularSongs = site.data.songs | sort: 'popularity' | reverse %}
|
|
|
|
{% for song in popularSongs %}
|
|
|
|
{% if forloop.index > 10 %} {% break %} {% endif %}
|
|
|
|
{% include songlist.html %}
|
2019-05-23 16:39:14 +00:00
|
|
|
{% endfor %}
|
2019-05-23 12:41:48 +00:00
|
|
|
</div>
|
2019-05-23 16:39:14 +00:00
|
|
|
</div>
|
2019-05-23 23:11:12 +00:00
|
|
|
<div id="hiddenSongs" class="content">
|
2019-05-13 11:45:10 +00:00
|
|
|
<h2>Hidden Songs</h2>
|
2019-05-23 12:41:48 +00:00
|
|
|
<div id="hiddenContainer">
|
2019-06-12 23:15:12 +00:00
|
|
|
{% assign hiddenSongs = site.data.songs | sort: 'popularity' %}
|
|
|
|
{% for song in hiddenSongs %}
|
|
|
|
{% if forloop.index > 10 %} {% break %} {% endif %}
|
2019-05-23 23:11:12 +00:00
|
|
|
{% include songlist.html %}
|
2019-05-23 16:39:14 +00:00
|
|
|
{% endfor %}
|
2019-05-23 12:41:48 +00:00
|
|
|
</div>
|
2019-05-23 16:39:14 +00:00
|
|
|
</div>
|