blob: 072567a8cd6594f233f6e6df65f63acee1a2d237 (
plain) (
blame)
1
2
3
4
5
6
7
|
<a href="{{ item.webpage_url }}">{{ item.title }}</a>
<span>({{ item.duration|fmt_duration }})</span>
{% match item.thumbnail %}
{% when Some with (thumbnail) %}
<img src="{{ thumbnail }}" height="128">
{% when None %}
{% endmatch %}
|