1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-31 13:07:46 +00:00

Fix feed generation

This commit is contained in:
RGBCube 2024-03-04 13:09:19 +03:00
parent 5a30d40a3e
commit 350ecd5e97
No known key found for this signature in database

View file

@ -36,21 +36,20 @@ site.use(feed({
output: ["/blog.rss"], output: ["/blog.rss"],
query: "type=article", query: "type=article",
sort: "date=desc", sort: "date=asc",
limit: Infinity,
info: { info: {
title: "RGBCube's Blog", title: "RGBCube's Blog",
description: description:
"The blog where RGBCube dumps his schizophrenic ramblings about software and all the likes.", "The blog where RGBCube dumps his schizophrenic ramblings about software and all the likes.",
lang: "en",
generator: false, generator: false,
}, },
items: { items: {
title: "=title", title: "=title",
description: "=description", description: "=description",
published: "=date", published: "=date",
content: "$ content", content: "$.content",
lang: "en",
}, },
})); }));