fix: json feed references

This commit is contained in:
Cory Dransfeldt 2023-06-04 17:39:45 -07:00
parent 5d919efcdd
commit 916a5707f6

View file

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