From b95bb4ac1d6798e90891d586646311526200fd36 Mon Sep 17 00:00:00 2001 From: Guillaume REICHENBACH Date: Tue, 16 Jun 2020 16:04:45 +0200 Subject: [PATCH] 'Newer/Older posts' label is now editable --- README.md | 2 ++ layouts/partials/pagination.html | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef71fc8..b1ad856 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,8 @@ paginate = 5 menuMore = "Show more" readMore = "Read more" readOtherPosts = "Read other posts" + newerPosts = "Newer posts" + olderPosts = "Older posts" missingContentMessage = "Page not found..." missingBackButtonLabel = "Back to home page" diff --git a/layouts/partials/pagination.html b/layouts/partials/pagination.html index ec762d3..9c4ab52 100644 --- a/layouts/partials/pagination.html +++ b/layouts/partials/pagination.html @@ -4,14 +4,14 @@ - Newer posts + {{ $.Site.Params.newerPosts }} {{ end }} {{ if .Paginator.HasNext }} - Older posts + {{ $.Site.Params.olderPosts }}