{# Playlist shortcode template #}
{% if post.thumbnail %} {{ post.title|e('html_attr') }} {% else %}
{% endif %} {% if post.visibility == 'private' %} {% endif %}
{{ __('Playlist', 'wp-fedistream') }}

{{ post.title }}

{% if post.author %}

{{ __('by', 'wp-fedistream') }} {{ post.author }}

{% endif %}
{% if post.track_count %} {{ post.track_count }} {{ post.track_count == 1 ? 'track' : 'tracks' }} {% endif %} {% if post.duration_formatted %} {{ post.duration_formatted }} {% endif %}
{% if show_tracks and post.tracks is not empty %}
{% for track in post.tracks %}
{{ loop.index }} {% if track.thumbnail %} {% endif %}
{{ track.title }} {{ track.artist }}
{% if track.duration_formatted %} {{ track.duration_formatted }} {% endif %}
{% endfor %}
{% endif %}