RSS Autodiscovery for rss/json feed (#714)

Signed-off-by: Daniel Gray <dng@disroot.org>
This commit is contained in:
lexi 2022-03-21 05:09:59 +00:00 committed by Daniel Gray
parent ddfe49d0bd
commit 9f348bdb83
No known key found for this signature in database
GPG Key ID: 41911F722B0F9AE3
2 changed files with 29 additions and 0 deletions

View File

@ -25,6 +25,10 @@
{{ site.data.schema.organization | jsonify }}
</script>
<!-- blog feeds -->
<link rel="alternate" title="Blog (JSON feed)" type="application/json" href="/feed.json" />
<link rel="alternate" title="Blog (Atom feed)" type="application/rss+xml" href="/feed.xml" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/layout/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/layout/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/layout/favicon-16x16.png">

25
feed.json Normal file
View File

@ -0,0 +1,25 @@
---
layout: null
---
{
"version": "https://jsonfeed.org/version/1",
"title": "{{ site.title | xml_escape }}",
"description": {{ site.description | jsonify }},
"home_page_url": "{{ "/" | absolute_url }}",
"feed_url": "{{ "/feed.json" | absolute_url }}",
"user_comment": "This feed allows you to read the posts from this site in any feed reader that supports the JSON Feed format.",
"items": [{% for post in site.posts %}
{
"id": "{{ post.url | absolute_url }}",
"url": "{{ post.url | absolute_url }}",
"title": {{ post.title | jsonify }},
"content_html": {{ post.content | jsonify }},
"date_published": "{{ post.date | date_to_xmlschema }}",
"authors": [{% for author in post.author %}
{
"name": "{{ author }}"
}{% unless forloop.last %}, {% endunless %}{% endfor %}
]
}{% unless forloop.last %},{% endunless %}{% endfor %}
]
}