From d220986b3d8a452210cbb837cb2a230722263c64 Mon Sep 17 00:00:00 2001 From: Matjaz Date: Sat, 8 Jan 2022 22:26:22 +0100 Subject: [PATCH] Add "Home" link to Articles page. --- routes/articles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/articles.js b/routes/articles.js index 5acb10f..98a2ec5 100644 --- a/routes/articles.js +++ b/routes/articles.js @@ -17,7 +17,7 @@ function articles(request, response) { title = toTitleCase(title); contents += `=> /articles/${item} ${title}\r\n`; }); - var articlesPage = `20 text/gemini\r\n\r\n# Articles by Uplink:SI\r\nList of Articles:\r\n${contents}\r\n`; + var articlesPage = `20 text/gemini\r\n\r\n# Articles by Uplink:SI\r\n=> / Home\r\nList of Articles:\r\n${contents}\r\n`; response.send(articlesPage); } catch (error) { response.error(51);