From 837cd67c74820bbafc148d972bbffc4d54d41e39 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 30 Sep 2020 00:27:47 +0200 Subject: [PATCH] note archived-ness on the rss feed --- node/rss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/rss.js b/node/rss.js index e8c7dd5..5b811f2 100644 --- a/node/rss.js +++ b/node/rss.js @@ -40,7 +40,7 @@ function createFeed(callback) { fs.readFile(__dirname + "/../blog/" + post.id + ".md", function (_, content) { let html = converter.makeHtml(content.toString()); feed.addItem({ - title: post.name, + title: post.name + (post.archived ? " (Archived)" : ""), link: "https://ellpeck.de/blog-" + post.id, description: post.summary, content: html,