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

{{ post.title }}

{% if post.artist_type %}

{{ post.artist_type }}

{% endif %} {% if post.genres is not empty %}
{% for genre in post.genres %} {{ genre.name }} {% endfor %}
{% endif %}
{% if post.content %}

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

{{ post.content|raw }}
{% endif %} {% if post.social_links is not empty %}

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

{% endif %} {% if post.albums is not empty %}

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

{% for album in post.albums %} {% include 'partials/card-album.twig' with { post: album } %} {% endfor %}
{% endif %} {% if post.tracks is not empty %}

{{ __('Popular Tracks', 'wp-fedistream') }}

{% for track in post.tracks %}
{{ loop.index }} {% if track.thumbnail %} {% endif %}
{{ track.title }} {% if track.album %} {{ track.album }} {% endif %}
{% if track.duration_formatted %} {{ track.duration_formatted }} {% endif %}
{% endfor %}
{% endif %}