fix: formatting

This commit is contained in:
Cory Dransfeldt 2023-08-04 12:54:48 -07:00
parent d7c083b0be
commit c1e0088942
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

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

View file

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