chore: fix links

This commit is contained in:
Cory Dransfeldt 2023-08-14 14:06:03 -07:00
parent a0e8ec25de
commit 3c974f28b0
No known key found for this signature in database
2 changed files with 4 additions and 4 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 | stripUtm | encodeAmp }}" /> <link href="{{ book.url | stripUtm | encodeAmp }}" />
<updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated> <updated>{{ book.dateAdded | date: "%m.%d.%Y" }}</updated>
<id>{{ book.link | stripUtm | encodeAmp }}</id> <id>{{ book.url | stripUtm | encodeAmp }}</id>
<content type="html"></content> <content type="html"></content>
</entry> </entry>
{% endfor %} {% endfor %}

View file

@ -9,9 +9,9 @@ permalink: '/books.json'
"feed_url": "https://coryd.dev/books.json", "feed_url": "https://coryd.dev/books.json",
"items": [{% for book in books %} "items": [{% for book in books %}
{ {
"id": "{{ book.link | stripUtm | encodeAmp }}", "id": "{{ book.url | stripUtm | encodeAmp }}",
"title": "{{ book.title | escape }}", "title": "{{ book.title | escape }}",
"url": "{{ book.link | stripUtm | encodeAmp }}", "url": "{{ book.url | stripUtm | encodeAmp }}",
"content_text": "{{ book.description | strip_html }}", "content_text": "{{ book.description | strip_html }}",
"date_published": "{{ book.dateAdded | date: "%Y-%m-%dT%H:%M:%S-08:00" }}" "date_published": "{{ book.dateAdded | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}