1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-30 20:47: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"],
query: "type=article",
sort: "date=desc",
sort: "date=asc",
limit: Infinity,
info: {
title: "RGBCube's Blog",
description:
"The blog where RGBCube dumps his schizophrenic ramblings about software and all the likes.",
lang: "en",
generator: false,
},
items: {
title: "=title",
description: "=description",
published: "=date",
content: "$ content",
lang: "en",
content: "$.content",
},
}));