chore: organize + clean up
This commit is contained in:
parent
ddc2e30375
commit
95581a079c
27 changed files with 172 additions and 15 deletions
19
src/feeds/books.liquid
Normal file
19
src/feeds/books.liquid
Normal 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 %}
|
Reference in a new issue