fix: json feed formats
This commit is contained in:
parent
cf4cc931a4
commit
99ae993986
3 changed files with 14 additions and 4 deletions
|
@ -3,8 +3,12 @@ permalink: '/feed.json'
|
|||
---
|
||||
{% assign posts = collections.posts | reverse %}
|
||||
{
|
||||
"posts": [
|
||||
{% for item in posts %}
|
||||
"version": "https://jsonfeed.org/version/1",
|
||||
"title": "All posts • Cory Dransfeldt"
|
||||
"icon": "https://coryd.dev/static/images/avatar.webp",
|
||||
"home_page_url": "https://coryd.dev",
|
||||
"feed_url": "https://coryd.dev/feed.json",
|
||||
"items": [{% for item in posts %}
|
||||
{
|
||||
"title": "{{ item.data.title }}",
|
||||
"url": "{{ item.url }}"
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
permalink: '.well-known/webfinger'
|
||||
eleventyExcludeFromCollections: true
|
||||
dynamicPermalink: false
|
||||
---
|
||||
{
|
||||
"subject": "acct:coryd@social.lol",
|
||||
|
|
|
@ -3,8 +3,12 @@ permalink: '/follow.json'
|
|||
---
|
||||
{% assign posts = follow.posts %}
|
||||
{
|
||||
"posts": [
|
||||
{% for item in posts %}
|
||||
"version": "https://jsonfeed.org/version/1",
|
||||
"title": "All activity • Cory Dransfeldt"
|
||||
"icon": "https://coryd.dev/static/images/avatar.webp",
|
||||
"home_page_url": "https://coryd.dev",
|
||||
"feed_url": "https://coryd.dev/follow.json",
|
||||
"items": [{% for item in posts %}
|
||||
{
|
||||
"title": "{{ item.title }}",
|
||||
"url": "{{ item.url }}"
|
||||
|
|
Reference in a new issue