fix: formatting
This commit is contained in:
parent
d7c083b0be
commit
c1e0088942
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue