HiddenSounds/_layouts/song.html

12 lines
305 B
HTML
Raw Normal View History

2019-06-07 01:19:47 +00:00
---
layout: default
title: '{{ page.sname }}'
ptitle: '{{ page.artists | join: ", " }} - {{ page.sname }}'
2019-06-07 01:19:47 +00:00
---
2019-07-22 23:56:36 +00:00
<div class="pageContent">
<h2>Lyrics</h2>
<pre id="lyrics">
{%- assign song = site.data.songextra | where: 'sid', page.sid | first -%}
{{ song.lyrics }}
</pre>
</div>