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 %}
|
{% assign posts = collections.posts | reverse %}
|
||||||
{
|
{
|
||||||
"posts": [
|
"version": "https://jsonfeed.org/version/1",
|
||||||
{% for item in posts %}
|
"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 }}",
|
"title": "{{ item.data.title }}",
|
||||||
"url": "{{ item.url }}"
|
"url": "{{ item.url }}"
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
---
|
---
|
||||||
permalink: '.well-known/webfinger'
|
permalink: '.well-known/webfinger'
|
||||||
|
eleventyExcludeFromCollections: true
|
||||||
|
dynamicPermalink: false
|
||||||
---
|
---
|
||||||
{
|
{
|
||||||
"subject": "acct:coryd@social.lol",
|
"subject": "acct:coryd@social.lol",
|
||||||
|
|
|
@ -3,8 +3,12 @@ permalink: '/follow.json'
|
||||||
---
|
---
|
||||||
{% assign posts = follow.posts %}
|
{% assign posts = follow.posts %}
|
||||||
{
|
{
|
||||||
"posts": [
|
"version": "https://jsonfeed.org/version/1",
|
||||||
{% for item in posts %}
|
"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 }}",
|
"title": "{{ item.title }}",
|
||||||
"url": "{{ item.url }}"
|
"url": "{{ item.url }}"
|
||||||
|
|
Reference in a new issue