fix: feed schema + webfinger

This commit is contained in:
Cory Dransfeldt 2023-03-28 12:06:43 -07:00
parent 0fd62529cf
commit da058d3ffd
No known key found for this signature in database
4 changed files with 10 additions and 37 deletions

View file

@ -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 %}
]