fix: feed schema + webfinger
This commit is contained in:
parent
0fd62529cf
commit
da058d3ffd
4 changed files with 10 additions and 37 deletions
|
@ -10,8 +10,10 @@ permalink: '/feed.json'
|
|||
"feed_url": "https://coryd.dev/feed.json",
|
||||
"items": [{% for item in posts %}
|
||||
{
|
||||
"id": "{{ site.url }}{{ item.url }}"
|
||||
"title": "{{ item.data.title }}",
|
||||
"url": "{{ item.url }}"
|
||||
"url": "{{ site.url }}{{ item.url }}",
|
||||
"date_published" "{{ item.date | date: "%m.%d.%Y" }}"
|
||||
}{% if not forloop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
]
|
||||
|
|
Reference in a new issue