move to standalonde files

This commit is contained in:
Set Sakrecoer 2019-04-28 20:57:46 +02:00
parent 5ec3c26777
commit ffc81e8be7
32 changed files with 206 additions and 181 deletions

15
music.html Normal file
View file

@ -0,0 +1,15 @@
---
title: Track Index
description:
layout: default
---
<div>
{% for track in site.music offset: 0 %}
<a href="{{ track.url }}">
<div style="background:url({{ site.audio_url }}{{ track.bgimg }});background-size:cover;">
<p><strong>{{ track.title }}</strong></p>
</div>
</a>
{% endfor %}
</div>