diff --git a/_layouts/post.html b/_layouts/post.html index a65ac8d..6927312 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -140,6 +140,31 @@ layout: default | {{ track.common.genre }}

{{ track.common.year }}

🔊 Play

+ {% if track.all.UNSYNCEDLYRICS and track.all.USLT %} + +

+ {{ track.all.USLT.text | newline_to_br }} +

+ + {% elsif track.all.USLT and track.all.UNSYNCEDLYRICS == nil %} + +

+ {{ track.all.USLT.text | newline_to_br }} +

+ + {% elsif track.all.UNSYNCEDLYRICS and track.all.USLT == nil %} + +

+ {{ track.all.UNSYNCEDLYRICS | newline_to_br }} +

+ + {% elsif track.all.lyrics %} + +

+ {{ track.all.lyrics | newline_to_br }} +

+ + {% endif %}