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",
"items": [{% for link in links %}
{
"id": "{{ link.href }}",
"title": "{{ link.description | escape }}",
"url": "{{ link.href }}",
"id": "{{ link.link }}",
"title": "{{ link.title | escape }}",
"url": "{{ link.link }}",
"content_text": "",
"date_published": "{{ link.time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
}{% if not forloop.last %},{% endif %}