fix: json feed references
This commit is contained in:
parent
5d919efcdd
commit
916a5707f6
1 changed files with 3 additions and 3 deletions
|
@ -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 %}
|
||||||
|
|
Reference in a new issue