{# Artist shortcode 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 layout == 'full' and post.content %}
{{ post.content|raw }}
{% endif %} {% if show_albums and post.albums is not empty %}

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

{% for album in post.albums|slice(0, 4) %} {% include 'partials/card-album.twig' with { post: album } %} {% endfor %}
{% endif %} {% if show_tracks and post.tracks is not empty %}

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

{% for track in post.tracks|slice(0, 5) %}
{{ loop.index }} {% if track.duration_formatted %} {{ track.duration_formatted }} {% endif %}
{% endfor %}
{% endif %}