From 7f2fa75d45f55c395e5fc8fa24b92b4ce6faed5e Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Wed, 29 Dec 2021 23:28:32 -0500 Subject: [PATCH] Remove length limit on recent posts --- themes/minimo/i18n/en.toml | 2 +- themes/minimo/layouts/partials/widgets/recent_posts.html | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/themes/minimo/i18n/en.toml b/themes/minimo/i18n/en.toml index b9cb7125..1fb8c99e 100644 --- a/themes/minimo/i18n/en.toml +++ b/themes/minimo/i18n/en.toml @@ -102,7 +102,7 @@ one = "One min read" other = "{{ .Count }} mins read" [recentPosts] -other = "Recent Posts" +other = "Entries" [reply] other = "Reply" diff --git a/themes/minimo/layouts/partials/widgets/recent_posts.html b/themes/minimo/layouts/partials/widgets/recent_posts.html index 1962eb8b..91484227 100644 --- a/themes/minimo/layouts/partials/widgets/recent_posts.html +++ b/themes/minimo/layouts/partials/widgets/recent_posts.html @@ -3,8 +3,6 @@ {{- $lang := .Site.Language.Lang -}} {{- $config := ( ( index $configData $lang ) | default $configData ) -}} -{{- $length := ( $config.length | default 5 ) -}} -

@@ -13,7 +11,7 @@