From 40dd888a0c63b3f0ce9a2ebf1ca1e10970d62440 Mon Sep 17 00:00:00 2001 From: He4eT Date: Mon, 11 Dec 2023 11:16:16 +0100 Subject: [PATCH] typos --- src/layouts/post.ejs | 2 +- src/layouts/redirect.ejs | 2 +- tools/rss.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layouts/post.ejs b/src/layouts/post.ejs index 9fe18bd..facd29d 100644 --- a/src/layouts/post.ejs +++ b/src/layouts/post.ejs @@ -4,7 +4,7 @@ <%- include('partials/head-common') %> - <%= page.title + ' / ' + site.title %> + <%= page.title + ' | ' + site.title %> diff --git a/src/layouts/redirect.ejs b/src/layouts/redirect.ejs index 6140318..0c20650 100644 --- a/src/layouts/redirect.ejs +++ b/src/layouts/redirect.ejs @@ -9,7 +9,7 @@ http-equiv="Refresh" content="0; URL=<%= page.redirectTarget %>"> - <%= 'Redirect / ' + site.title %> + <%= 'Redirect | ' + site.title %> diff --git a/tools/rss.js b/tools/rss.js index 1c905b0..6b1f123 100644 --- a/tools/rss.js +++ b/tools/rss.js @@ -9,7 +9,7 @@ const rssFeed = new rss({ feed_url: `${url}/rss.xml`, image_url: `${url}/icon.svg'`, description: - 'Fanzine about experiments, code and other cyberpunk stuff'}) + 'A fanzine about experiments, code and other cyberpunk stuff'}) feed.forEach(([date, url, title, description]) => rssFeed.item({date, url, title, description}))