mirror of
https://github.com/RGBCube/Site
synced 2025-07-31 13:07:46 +00:00
Fix feed generation
This commit is contained in:
parent
5a30d40a3e
commit
350ecd5e97
1 changed files with 3 additions and 4 deletions
|
@ -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",
|
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue