{{ book.title }}
{% if book.rating %}{{ book.rating }}{% endif %}
{% if book.author %}
By {{ book.author }}
{% endif %}
{%- if book.favorite -%}
{% tablericon "heart" %} This is one of my favorite books!
{%- endif -%}
{%- if book.tattoo -%}
{% tablericon "needle" %} I have a tattoo inspired by this book!
{%- endif -%}
{% if book.status == 'finished' %}
Finished on: {{ book.date_finished | date: "%B %e, %Y" }}
{% endif %}
{% if book.status == 'started' %}
{%- assign percentage = book.progress | append: '%' -%}
{% render "media/progress-bar.liquid", percentage:percentage %}
{% endif %}
{% if book.review %}
{% render "blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}