{# Album shortcode template #}
{% if post.thumbnail %} {{ post.title|e('html_attr') }} {% else %}
{% endif %}
{% if post.album_type %} {{ post.album_type }} {% endif %}

{{ post.title }}

{% if post.artist %}

{{ post.artist }}

{% endif %}
{% if post.release_date %} {{ post.release_date }} {% endif %} {% if post.track_count %} {{ post.track_count }} {{ post.track_count == 1 ? 'track' : 'tracks' }} {% endif %}
{% if show_tracks and post.tracks is not empty %}
{% for track in post.tracks %}
{{ track.track_number|default(loop.index) }} {% if track.duration_formatted %} {{ track.duration_formatted }} {% endif %}
{% endfor %}
{% endif %}