Simplify the Atom and JSON feeds

This commit is contained in:
Zach Leatherman
2022-07-15 14:42:48 -05:00
parent 294f4c53c1
commit c780c72770
3 changed files with 12 additions and 25 deletions

View File

@@ -1,13 +1,13 @@
---
# Metadata comes from _data/metadata.json
permalink: "{{ metadata.jsonfeed.path }}"
permalink: /feed/feed.json
---
{
"version": "https://jsonfeed.org/version/1.1",
"title": "{{ metadata.title }}",
"language": "{{ metadata.language }}",
"home_page_url": "{{ metadata.url }}",
"feed_url": "{{ metadata.jsonfeed.url }}",
"feed_url": "{{ permalink | url | absoluteUrl(metadata.url) }}",
"description": "{{ metadata.description }}",
"author": {
"name": "{{ metadata.author.name }}",
@@ -15,17 +15,15 @@ permalink: "{{ metadata.jsonfeed.path }}"
},
"items": [
{%- for post in collections.posts | reverse %}
{%- set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset -%}
{%- set absolutePostUrl = post.url | url | absoluteUrl(metadata.url) %}
{
"id": "{{ absolutePostUrl }}",
"url": "{{ absolutePostUrl }}",
"title": "{{ post.data.title }}",
"content_html": {% if post.templateContent %}{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) | dump | safe }}{% else %}""{% endif %},
"date_published": "{{ post.date | rssDate }}"
"date_published": "{{ post.date | dateToRfc3339 }}"
}
{%- if not loop.last -%}
,
{%- endif -%}
{% if not loop.last %},{% endif %}
{%- endfor %}
]
}