From 843a59263bf63efc3edda09369e662742c4569fe Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Sat, 20 Jun 2015 22:33:31 +0200 Subject: [PATCH] Added support for custom strings --- layouts/partials/nav.html | 16 ++++++++-------- layouts/partials/pagination.html | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html index 124c517..3e2004a 100644 --- a/layouts/partials/nav.html +++ b/layouts/partials/nav.html @@ -1,12 +1,12 @@ \ No newline at end of file diff --git a/layouts/partials/pagination.html b/layouts/partials/pagination.html index dec402d..6112a25 100644 --- a/layouts/partials/pagination.html +++ b/layouts/partials/pagination.html @@ -3,14 +3,14 @@ {{ if .Paginator.HasPrev }} - Newer Posts + {{ with .Site.Params.newerPosts }}{{ . }}{{ else }}Newser Posts{{ end }} {{ end }} {{ if .Paginator.HasNext }} - Older Posts + {{ with .Site.Params.olderPosts }}{{ . }}{{ else }}Older Posts{{ end }} {{ end }}