--- 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 bookData = books | bookStatus: 'started' | reverse -%} {%- assign currentBookCount = books | currentBookCount -%}

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

2024 / 2023 / 2022 / 2021 / 2020

{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-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 }}
{% endif %}
{% endfor %}