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

{{ post.title }}

{% if post.author %}

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

{% endif %}
{% if post.track_count %} {{ post.track_count }} {{ post.track_count == 1 ? __('track', 'wp-fedistream') : __('tracks', 'wp-fedistream') }} {% endif %} {% if post.duration_formatted %} {{ post.duration_formatted }} {% endif %} {% if post.updated_date %} {{ __('Updated', 'wp-fedistream') }} {{ post.updated_date }} {% endif %}
{% if post.moods is not empty %}
{% for mood in post.moods %} {{ mood.name }} {% endfor %}
{% endif %}
{% if post.content %}
{{ post.content|raw }}
{% endif %} {% if post.tracks is not empty %}
{% for track in post.tracks %}
{{ loop.index }} {% if track.thumbnail %} {% endif %}
{{ track.title }} {% if track.artists is iterable %} {% for artist in track.artists %} {{ artist.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} {{ track.artist }} {% endif %}
{% if track.explicit %} E {% endif %} {% if track.duration_formatted %} {{ track.duration_formatted }} {% endif %}
{% endfor %}
{% else %}

{{ __('This playlist is empty.', 'wp-fedistream') }}

{% endif %}