My thoughts
{{ book.review | markdown }}{% endif %} {%- if book.artists -%} {%- capture sectionTitle -%} {% if book.artists.size > 1 %} I listen to artists featured in this book! {% else %} I listen to the artist featured in this book! {%- endif -%} {%- endcapture -%}
{% tablericon "headphones" "Music" %} {{ sectionTitle }}
-
{% for artist in book.artists %}
- {{ artist.name }}{%- if artist.total_plays > 0 -%}: {{ artist.total_plays }} plays{%- endif -%} {% endfor %}
{%- endif -%} {%- if book.movies -%} {%- capture sectionTitle -%} {% if book.movies.size > 1 %} I've watched movies related to this book! {% else %} I've watched a movie related to this book! {%- endif -%} {%- endcapture -%}
{% tablericon "device-tv-old" "Movies" %} {{ sectionTitle }}
-
{% for movie in book.movies %}
- {{ movie.title }} ({{ movie.year }}) {% endfor %}