Update configuration of feed plugin

This commit is contained in:
Foster Hangdaan 2024-11-06 18:07:12 -05:00
parent 780e1380e2
commit 8b984ffe6a
Signed by: foster
GPG key ID: E48D7F49A852F112

View file

@ -42,15 +42,19 @@ site.use(feed({
"/blog/feed.json",
],
info: {
title: "Foster Hangdaan's Blog",
description: "My thoughts and ideas.",
published: new Date(),
authorName: "=site.author.name",
authorUrl: "=site.author.url",
description: "A strange place where I write something other than code.",
lang: "en",
published: new Date(),
title: "Foster Hangdaan's Blog",
},
items: {
title: "=title",
authorName: "=author.name",
authorUrl: "=author.url",
description: "=description",
published: "=date",
title: "=title",
updated: "=updated",
},
}));