{{ book.title }}
{% if book.rating %}{{ book.rating }}
{% endif %} {% if book.author %}By {{ book.author }}
{% endif %} {% if book.status == 'finished' %}Finished on: {{ book.date | date: "%B %e, %Y" }}
{% endif %} {% unless book.status == 'finished' %} {%- assign percentage = book.progress | append: '%' -%} {% render "partials/media/progress-bar.liquid", percentage:percentage %} {% endunless %}{{ book.description }}
{% endif %}