diff options
Diffstat (limited to 'templates/song.htm')
| -rw-r--r-- | templates/song.htm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/song.htm b/templates/song.htm new file mode 100644 index 0000000..93f4fec --- /dev/null +++ b/templates/song.htm @@ -0,0 +1,10 @@ +<a href="{{ item.webpage_url }}">{{ item.title }}</a> +{% match item.duration %} + {% when Some with (duration) %} + {% let secs = duration.as_secs() %} + {% let mins = secs / 60 %} + {% let submin_secs = secs % 60 %} + <span>({{ "{:02}"|format(mins) }}:{{ "{:02}"|format(submin_secs) }})</span> + {% when None %} + <span>(--:--)</span> +{% endmatch %} |
