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 %} {% for book in books %}
<entry> <entry>
<title>{{ book.title | escape }}</title> <title>{{ book.title | escape }}</title>
<link href="{{book.link}}" /> <link href="{{book.link | url_encode}}" />
<updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated> <updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated>
<id>{{ book.link }}</id> <id>{{ book.link | url_encode }}</id>
<content type="html"></content> <content type="html"></content>
</entry> </entry>
{% endfor %} {% endfor %}

View file

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

View file

@ -10,9 +10,9 @@ permalink: /links.xml
{% for link in links %} {% for link in links %}
<entry> <entry>
<title>{{ link.title | escape }}</title> <title>{{ link.title | escape }}</title>
<link href="{{link.link}}" /> <link href="{{ link.url | url_encode }}" />
<updated>{{ link.date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}</updated> <updated>{{ link.date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}</updated>
<id>{{ link.url }}</id> <id>{{ link.url | url_encode }}</id>
<content type="html"></content> <content type="html"></content>
</entry> </entry>
{% endfor %} {% endfor %}