Add "Home" link to Articles page.

This commit is contained in:
Matjaz
2022-01-08 22:26:22 +01:00
parent 4c615a2a44
commit d220986b3d

View File

@ -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);