chore: organize + clean up

This commit is contained in:
Cory Dransfeldt 2023-07-07 13:37:27 -07:00
parent ddc2e30375
commit 95581a079c
No known key found for this signature in database
27 changed files with 172 additions and 15 deletions

19
src/feeds/books.liquid Normal file
View file

@ -0,0 +1,19 @@
---
layout: null
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 entries %}
{% for book in books %}
<entry>
<title>{{ book.title | escape }}</title>
<link href="{{book.link}}" />
<updated>{{ book.finished | date: "%m.%d.%Y" }}</updated>
<id>{{ book.link }}</id>
<content type="html"></content>
</entry>
{% endfor %}
{% endblock %}