{% from "player/_album_action_menu.html" import album_action_menu %} {% from "player/_icons.html" import pause_icon, play_icon, search_icon %}
{% include "player/_page_title.html" %}
{% 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 home_radio_choices %}

What do you want to listen to?

{% for item in home_radio_choices %}
{{ item.label }}
{% for mode_item in recommendation_mode_menu_items(item.url, item.modes) %} {% endfor %}
{% endfor %}
{% endif %} {% 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 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 %}
{{ album_action_menu(album.artist ~ " - " ~ (album.album|display_album_title), album|album_radio_url) }}
{% 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 %}
{{ album_action_menu(album.artist ~ " - " ~ (album.album|display_album_title), album|album_radio_url) }}
{% 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 %}
{{ album_action_menu(album.artist ~ " - " ~ (album.album|display_album_title), album|album_radio_url) }}
{% 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 %}