fix: formatting

This commit is contained in:
Cory Dransfeldt 2023-08-04 12:30:12 -07:00
parent ba27c649c5
commit 257aebf8b0
No known key found for this signature in database
3 changed files with 7 additions and 7 deletions

View file

@ -10,9 +10,9 @@ permalink: /books.xml
{% for book in books %}
<entry>
<title>{{ book.title | escape }}</title>
<link href="{{book.link}}" />
<updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated>
<id>{{ book.link }}</id>
<link href="{{book.link | url_encode}}" />
<updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated>
<id>{{ book.link | url_encode }}</id>
<content type="html"></content>
</entry>
{% endfor %}