HiddenSounds/index.html

33 lines
947 B
HTML
Raw Normal View History

2019-05-23 16:39:14 +00:00
---
layout: default
title: Hidden Sounds
---
<h1>Hidden Sounds Unofficial (Fan) Website</h1>
<div id="popularSongs">
2019-05-13 11:45:10 +00:00
<h2>Popular Songs</h2>
2019-05-23 12:41:48 +00:00
<div id="popularContainer">
2019-05-23 16:39:14 +00:00
{% for song in site.data.songs %}
<div class="song">
<p>
{% assign artist = site.artists | where: 'name', song.artist | first %}
{% if artist %}
<a href="{{ artist.url }}">{{ artist.name }}</a>
{% else %}
{{ song.artist }}
{% endif %}
- <a href="https://spotify.com/">{{ song.title }}</a>
</p>
</div>
{% endfor %}
2019-05-23 12:41:48 +00:00
</div>
2019-05-23 16:39:14 +00:00
</div>
<div id="hiddenSongs">
2019-05-13 11:45:10 +00:00
<h2>Hidden Songs</h2>
2019-05-23 12:41:48 +00:00
<div id="hiddenContainer">
2019-05-23 16:39:14 +00:00
{% for song in site.data.songs %}
<div class="song">
<p><a href="https://spotify.com/">Artist - Title</a></p>
</div>
{% endfor %}
2019-05-23 12:41:48 +00:00
</div>
2019-05-23 16:39:14 +00:00
</div>