Compare commits

..

No commits in common. "974a3dea62bacab699cb191ad89c81eb1a8221ec" and "60bff43638e0d7df5d9ded3ff9aae3f6549ea6a2" have entirely different histories.

3 changed files with 6 additions and 8 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -12,7 +12,7 @@
},
"type": "module",
"devDependencies": {
"@types/bun": "^1.1.10"
"@types/bun": "^1.1.9"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",

View File

@ -3,8 +3,6 @@
eleventyExcludeFromCollections: true
eleventyComputed:
permalink: "{{ sitemeta.feedPath }}"
feedMeta:
baseUrl: "{{ sitemeta.siteUrl }}/"
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
@ -13,18 +11,18 @@ eleventyComputed:
<link href="{{ sitemeta.feedUrl }}" rel="self"/>
<link href="{{ sitemeta.siteUrl }}"/>
<updated>{{ collections.feedItems | getNewestCollectionItemDate | dateToRfc3339 }}</updated>
<id>{{ feedMeta.baseUrl }}</id>
<id>{{ sitemeta.siteUrl }}/</id>
<author>
<name>{{ sitemeta.siteAuthor.name }}</name>
<email>{{ sitemeta.siteAuthor.email }}</email>
</author>
{%- for item in collections["feed items"] | reverse | itemLimit(15) %}
{% set absolutePostUrl %}{{ item.url | absoluteUrl(feedMeta.baseUrl) }}{% endset %}
{% set absolutePostUrl %}{{ item.url | absoluteUrl(sitemeta.siteUrl) }}{% endset %}
<entry>
<title>{{ item.data.title | safe }}</title>
<link href="{{ feedMeta.baseUrl if absolutePostUrl.includes("false") else absolutePostUrl }}"/>
<title>{{ item.data.title }}</title>
<link href="{{ absolutePostUrl }}"/>
<updated>{{ item.date | dateToRfc3339 }}</updated>
<id>{{ feedMeta.baseUrl if absolutePostUrl.includes("false") else absolutePostUrl }}</id>
<id>{{ absolutePostUrl }}</id>
<content type="html">{{ item.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</content>
</entry>
{%- endfor %}