{% extends "base.html" %} {% block title %}About > Music{% endblock %} {% block description %}What I'm listening to right now{% endblock %} {% block content %}

About > Music

{% if playing.state.playing() %} I'm currently listening to: {% else %} I recently listened to: {% endif %}

{% match playing.album_artwork %} {% when Some with (url) %} album artwork {% when None %} {% endmatch %}
{% if playing.state.playing() %}
{% endif %}

{{ playing.title }}

by {{ playing.artist }}

{% match playing.track_id %} {% when Some with (track_id) %}
View on Spotify
{% when None %} {% endmatch %}
{% endblock %}