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

Reading

Here's what I'm reading at the moment. I've finished {{ currentBookCount }} books this year. I've read {{ books.daysRead }} days in a row and counting.

{% render "blocks/top-tags.liquid" label:"Top genres" tags:topTags.books_genres %}

{{ books.years | bookYearLinks }}

{% render "blocks/banners/rss.liquid", url: "/feeds/books.xml", 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 | replaceQuotes }}

{{ book.title }}

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