--- 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.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 %}

View on Open Library

{% 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 %} {%- 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 }}


{%- 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 }}

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

Overview

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