HiddenSounds/index.html
Norbi Peti 4024ebe455
Artist, stream pages, menu, index song listing
- 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
2019-06-13 01:15:37 +02:00

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