{{ book.title }}
{% if book.author %}
By {{ book.author }}
{% endif %}
{% if book.progress %}
{%- assign percentage = book.progress | append: '%' -%}
{% render "media/progress-bar.liquid", percentage:percentage %}
{% endif %}
{% if book.description %}
{{ book.description | normalize_whitespace | markdown | htmlTruncate }}
{% endif %}