--- layout: default pagination: data: books.all size: 1 alias: book permalink: "{{ book.url }}/index.html" isbn: {{ book.isbn }} schema: book --- {%- capture alt -%} {{ book.title }}{% if book.authors %}By {{ book.authors }}{% endif %} {%- endcapture -%} {% tablericon "arrow-left" "Go back to the books index page" %} Back to books
{{ alt }}

{{ book.title }}

{% if book.rating %}

{{ book.rating }}

{% endif %} {% if book.author %}

By {{ book.author }}

{% endif %} {%- if book.favorite -%}

{% tablericon "heart" "Favorite" %} This is one of my favorite books!

{%- endif -%} {%- if book.tattoo -%}

{% tablericon "needle" "Tattoo" %} I have a tattoo inspired by this book!

{%- endif -%} {% if book.status == 'finished' %}

Finished on: {{ book.date | date: "%B %e, %Y" }}

{% endif %} {% if book.status == 'started' %} {%- assign percentage = book.progress | append: '%' -%} {% render "partials/media/progress-bar.liquid", percentage:percentage %} {% endif %}
{% if book.review %} {% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}

My thoughts

{{ book.review | markdown }}
{% endif %} {% render "partials/blocks/associated-media.liquid", posts:book.posts %} {% render "partials/blocks/associated-media.liquid", books:book.relatedBooks %} {% render "partials/blocks/associated-media.liquid", artists:book.artists %} {% render "partials/blocks/associated-media.liquid", movies:book.movies %} {% render "partials/blocks/associated-media.liquid", shows:book.shows %} {% render "partials/blocks/associated-media.liquid", genres:book.genres %} {% if book.description %}

Overview

{{ book.description | markdown }} {% endif %}