NorbiPeti
4024ebe455
- Fixed song listing on artist pages - Fixed artist page generation - Sorted artist listing - Added menu and moved displayed titles to the template - Linking songs from artist pages - Added a page for streams and collected the data for it manually - Implemented Popular and Hidden Songs on the index page - Bunch of fixes of URLs and such
25 lines
No EOL
796 B
HTML
25 lines
No EOL
796 B
HTML
---
|
|
layout: default
|
|
title: Hidden Sounds
|
|
ptitle: Hidden Sounds Unofficial (Fan) Website
|
|
---
|
|
<div id="popularSongs" class="content">
|
|
<h2>Popular Songs</h2>
|
|
<div id="popularContainer">
|
|
{% assign popularSongs = site.data.songs | sort: 'popularity' | reverse %}
|
|
{% for song in popularSongs %}
|
|
{% if forloop.index > 10 %} {% break %} {% endif %}
|
|
{% include songlist.html %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div id="hiddenSongs" class="content">
|
|
<h2>Hidden Songs</h2>
|
|
<div id="hiddenContainer">
|
|
{% assign hiddenSongs = site.data.songs | sort: 'popularity' %}
|
|
{% for song in hiddenSongs %}
|
|
{% if forloop.index > 10 %} {% break %} {% endif %}
|
|
{% include songlist.html %}
|
|
{% endfor %}
|
|
</div>
|
|
</div> |