{# Popular tracks list shortcode template #}
{% if title %}

{{ title }}

{% endif %} {% if posts is not empty %}
{% for post in posts %}
{{ loop.index }} {% if post.thumbnail %} {% else %}
{% endif %}
{{ post.title }} {% if post.artists is iterable %} {% for artist in post.artists %} {{ artist.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} {{ post.artist }} {% endif %}
{% if post.play_count %} {{ post.play_count|number_format }} {% endif %} {% if post.duration_formatted %} {{ post.duration_formatted }} {% endif %}
{% endfor %}
{% else %}

{{ __('No tracks found.', 'wp-fedistream') }}

{% endif %}