aboutsummaryrefslogtreecommitdiffstats
path: root/templates/song.htm
blob: 93f4fec269ce8a6639e53fe4dea3bce428b12034 (plain) (blame)
1
2
3
4
5
6
7
8
9
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 %}