From 491a8d14a67b664ac24d7318e598735d500f26b5 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Fri, 17 Dec 2021 10:01:15 -0600 Subject: [PATCH] fix related articles string to not include a trailing space --- i18n/en.toml | 4 ++-- layouts/partials/related.html | 2 +- layouts/partials/sidebar.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/i18n/en.toml b/i18n/en.toml index 3e33c8c..37d347b 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -2,10 +2,10 @@ other = "On this page" [series_posts] -other = "More " +other = "More" [all_rights] other = "All Rights Reserved" [powered_by] -other = "Powered by Hugo, Clarity, GitLab, and Netlify" \ No newline at end of file +other = "Powered by" \ No newline at end of file diff --git a/layouts/partials/related.html b/layouts/partials/related.html index dc0cacd..5e6478c 100644 --- a/layouts/partials/related.html +++ b/layouts/partials/related.html @@ -1,7 +1,7 @@ {{ if isset .Params "series" }} {{$related := where .Site.RegularPages ".Params.series" "eq" .Params.series }} {{- $relatedLimit := default 8 .Params.numberOfRelatedPosts }} -

{{ T "series_posts" }}{{ .Params.series }}

+

{{ T "series_posts" }} {{ .Params.series }}