chore: add goodreads data

This commit is contained in:
Cory Dransfeldt 2023-08-04 11:48:06 -07:00
parent 4dcbc55c74
commit 951284c62b
No known key found for this signature in database
12 changed files with 47 additions and 219 deletions

View file

@ -5,13 +5,13 @@ permalink: /books.xml
{% layout "./_includes/feeds/books.liquid" %}
{% block title %}Books • Cory Dransfeldt{% endblock %}
{% block self %}books.xml{% endblock %}
{% block update %}{{ articles[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block update %}{{ books[0].dateAdded | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block entries %}
{% for book in books %}
<entry>
<title>{{ book.title | escape }}</title>
<link href="{{book.link}}" />
<updated>{{ book.started | date: "%m.%d.%Y" }}</updated>
<updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated>
<id>{{ book.link }}</id>
<content type="html"></content>
</entry>