Books Reading
Currently Reading:
{% assign current_books = site.data.grcurrent.GoodreadsResponse %} {% if current_books.reviews.total == "1" %}{% else %}- {% for rev in current_books.reviews.review %}
- {{ rev.book.title }} {% endfor %}
Recent Books
Books I have read recently (this data pulled from my GoodReads profile) {% assign goodreads = site.data.grbooks.GoodreadsResponse %} {% for rev in goodreads.reviews.review %}
{% if rev.book.image_url contains '/nophoto/' %}
{% assign gr_nophoto = true %}
{% endif %}
{% if gr_nophoto and rev.book.isbn.nil != "true" %}
{% else %}
{% endif %}
{{ rev.book.title }} {% if rev.book.publication_year %}({{ rev.book.publication_year }}){% endif %}
Rating: {{rev.rating}} start - {% if rev.body %}"{{ rev.body }}"{% endif %}
{% endfor %}