{% 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

Recent
{% 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 }}
{% endfor %}
{% endif %} {% if dashboard.recently_added_albums %}
{% if dashboard.recently_added_since %}

Most Recently Added Since

{% else %}

{{ recently_added_heading }}

{% endif %} 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 }} {% if album.added_at %} {% else %} {{ added_label(album.added_at) }} {% endif %}
{% 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 }} {% if album.starred_at %} {% else %} {{ favorited_label(album.starred_at) }} {% endif %}
{% endfor %}
{% endif %} {% if dashboard.recent_artists %}

Recent Artists

All artists
{% for artist in dashboard.recent_artists %} {{ artist.name }} {% 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 %}