{# Single track template #}
{% if post.thumbnail %} {{ post.title|e('html_attr') }} {% else %}
{% endif %}

{{ post.title }}

{% if post.artists is not empty %}

{% for artist in post.artists %} {{ artist.name }}{% if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% if post.album %}

{{ __('From', 'wp-fedistream') }} {{ post.album }}

{% endif %}
{% if post.duration_formatted %} {{ post.duration_formatted }} {% endif %} {% if post.play_count %} {{ post.play_count }} {{ post.play_count == 1 ? __('play', 'wp-fedistream') : __('plays', 'wp-fedistream') }} {% endif %} {% if post.explicit %} {{ __('Explicit', 'wp-fedistream') }} {% endif %}
{% if post.genres is not empty %}
{% for genre in post.genres %} {{ genre.name }} {% endfor %}
{% endif %} {% if post.moods is not empty %}
{% for mood in post.moods %} {{ mood.name }} {% endfor %}
{% endif %}
{% if post.audio_url %}
0:00
{{ post.duration_formatted|default('0:00') }}
{% endif %} {% if post.content %}

{{ __('About This Track', 'wp-fedistream') }}

{{ post.content|raw }}
{% endif %} {% if post.lyrics %}

{{ __('Lyrics', 'wp-fedistream') }}

{{ post.lyrics|nl2br }}
{% endif %} {% if post.credits %}

{{ __('Credits', 'wp-fedistream') }}

{{ post.credits|raw }}
{% endif %} {% if post.license %}

{{ __('License:', 'wp-fedistream') }} {{ post.license.name }}

{% endif %}