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",
|
||||
"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 %}
|
||||
|
|
Reference in a new issue