mirror of
https://github.com/penpot/penpot.git
synced 2026-06-29 10:42:06 +00:00
- Convert .eleventy.js to eleventy.config.mjs (ESM) since @11ty/eleventy-plugin-rss@3.0.0 is ESM-only - Replace search-index.json.njk with search-index.json.11ty.js to avoid async templateContent access in Nunjucks filters - Update feed.njk to use new RSS plugin v3 filter names: rssLastUpdatedDate -> getNewestCollectionItemDate | dateToRfc3339 rssDate -> dateToRfc3339 - Add 11ty.js to templateFormats for search index generation
30 lines
1.1 KiB
Plaintext
Executable File
30 lines
1.1 KiB
Plaintext
Executable File
---
|
|
# Metadata comes from _data/metadata.json
|
|
permalink: "{{ metadata.feed.path }}"
|
|
eleventyExcludeFromCollections: true
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>{{ metadata.title }}</title>
|
|
<subtitle>{{ metadata.feed.subtitle }}</subtitle>
|
|
{% set absoluteUrl %}{{ metadata.feed.path | url | absoluteUrl(metadata.url) }}{% endset %}
|
|
<link href="{{ absoluteUrl }}" rel="self"/>
|
|
<link href="{{ metadata.url }}"/>
|
|
<updated>{{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }}</updated>
|
|
<id>{{ metadata.feed.id }}</id>
|
|
<author>
|
|
<name>{{ metadata.author.name }}</name>
|
|
<email>{{ metadata.author.email }}</email>
|
|
</author>
|
|
{%- for post in collections.posts | reverse %}
|
|
{% set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset %}
|
|
<entry>
|
|
<title>{{ post.data.title }}</title>
|
|
<link href="{{ absolutePostUrl }}"/>
|
|
<updated>{{ post.date | dateToRfc3339 }}</updated>
|
|
<id>{{ absolutePostUrl }}</id>
|
|
<content type="html">{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</content>
|
|
</entry>
|
|
{%- endfor %}
|
|
</feed>
|