@@ -79,7 +81,7 @@ lang: en
{% endfor %}
@@ -109,16 +111,17 @@ lang: en
{{ track.common.track.no }}.
{{ track.common.title }}
- {% assign round_seconds = track.format.duration | round %}{% assign minutes = round_seconds | divided_by: 60 %}{% assign leftover_seconds = minutes | times: 60 %}{{ minutes }}:{{ round_seconds | minus: leftover_seconds }}
+ {% assign round_seconds = track.format.duration | round %}{% assign minutes = round_seconds | divided_by: 60 %}{% assign leftover_seconds = minutes | times: 60 %}{{ minutes }}:{% assign seconds_without_zero = round_seconds | minus: leftover_seconds %}{% if seconds_without_zero < 10 %}0{% endif %}{{ seconds_without_zero }}
-
+ {% endfor %}
{% include streamer.html %}
@@ -155,7 +154,7 @@ lang: en
-
+