{% from "player/_icons.html" import pause_icon, play_icon, queue_add_icon %}
{% include "player/_page_title.html" %}
{% if show_history_empty %}

No listening history yet

Start with the library, browse artists, or pick a playlist. This page will fill in as you listen.

{% endif %} {% if continue_listening %} {% set feature = continue_listening.album %}

Continue Listening

Queue
{% set art_url = feature|album_art_url %} {% if art_url %} {% else %} {% endif %}
{% if continue_listening.track_title %}
{{ continue_listening.track_title }}
{% endif %}

{{ feature.album|display_album_title }}

{{ feature.artist }} Now playing
{% endif %} {% if dashboard.recent_albums %}

Recently Listened Albums

All albums
{% for item in dashboard.recent_albums %} {% set album = item.album %}
{% set art_url = album|album_art_url %} {% if art_url %} {% else %} {% endif %} {% if album.track_count %}
{% endif %}
{{ album.album|display_album_title }} {{ album.artist }} {{ played_label(item.last_played_at) }}
{% endfor %}
{% endif %} {% if dashboard.recently_added_albums %}

{{ recently_added_heading }}

Recently Added
{% for album in dashboard.recently_added_albums %}
{% set art_url = album|album_art_url %} {% if art_url %} {% else %} {% endif %} {% if album.track_count %}
{% endif %}
{{ album.album|display_album_title }} {{ album.artist }} {{ added_label(album.file_created_at) }}
{% endfor %}
{% endif %} {% if dashboard.recently_starred_albums %}

Recently Favorited

Starred
{% for album in dashboard.recently_starred_albums %}
{% set art_url = album|album_art_url %} {% if art_url %} {% else %} {% endif %} {% if album.track_count %}
{% endif %}
{{ album.album|display_album_title }} {{ album.artist }} {{ favorited_label(album.starred_at) }}
{% endfor %}
{% endif %} {% if dashboard.recent_artists %}

Recent Artists

All artists
{% for artist in dashboard.recent_artists %} {{ artist.name }} {{ played_label(artist.last_played_at) }} {% endfor %}
{% endif %} {% if dashboard.recent_playlists or dashboard.recent_tracks %}
{% if dashboard.recent_tracks %}

Recent Tracks

{% endif %} {% if dashboard.recent_playlists %}

Recent Playlists

All playlists
{% endif %}
{% endif %}