+ + + + {{ artist.name_string }} + {%- if artist.favorite -%} + {% tablericon "heart" "Favorite" %} This is one of my favorite artists! + {%- endif -%} + {%- if artist.total_plays > 0 -%} + {{ artist.total_plays }} plays + {%- endif -%} + {{ artist.genre }} + + {% tablericon "brain" "MusicBrainz" %} + + + + {%- if artist.description -%} + {{ artist.description | markdown }} + Show more + {%- endif -%} + + + Year + Title + Plays + + {% for album in artist.albums %} + + {{ album.release_year }} + {{ album.name }} + {{ album.total_plays }} + + {% endfor %} + +