--- title: Currently reading / Books description: Here's what I'm reading at the moment. layout: default permalink: "/books/index.html" updated: "now" schema: books --- {%- assign currentYear = 'now' | date: "%Y" -%} {%- assign bookData = books.all | bookStatus: 'started' | reverse -%} {%- assign currentBookCount = books.all | bookFinishedYear: currentYear | size -%}

Currently reading

Here's what I'm reading at the moment. I've finished {{ currentBookCount }} books this year.

{{ books.years | bookYearLinks }}

{% render "partials/blocks/banners/rss.liquid", url: "/feeds/books", text: "Subscribe to my books feed or follow along on this page" %}
{% for book in bookData %} {% capture alt %}{{ book.title }} by {{ book.authors }}{% endcapture %}
{{ alt }}

{{ book.title }}

{% if book.author %}

By {{ book.author }}

{% endif %} {% if book.progress %} {%- assign percentage = book.progress | append: '%' -%} {% render "partials/media/progress-bar.liquid", percentage:percentage %} {% endif %} {% if book.description %}
{{ book.description | normalize_whitespace | markdown | truncatewords: 50 }}
{% endif %}
{% endfor %}