diff --git a/layouts/partials/pagination.html b/layouts/partials/pagination.html
index 8b28942..3567021 100644
--- a/layouts/partials/pagination.html
+++ b/layouts/partials/pagination.html
@@ -1,20 +1,8 @@
-
+{{ if .Paginator.HasPrev }}
+ {{ $.Site.Params.newerPosts | default "Newer posts" }}
+{{ end }}
+{{ if .Paginator.HasNext }}
+ {{ $.Site.Params.olderPosts | default "Older posts" }}
+{{ end }}
+
\ No newline at end of file
diff --git a/layouts/partials/posts_pagination.html b/layouts/partials/posts_pagination.html
index ee5b3cf..ed085fc 100644
--- a/layouts/partials/posts_pagination.html
+++ b/layouts/partials/posts_pagination.html
@@ -1,10 +1,8 @@
-{{ if or .NextInSection .PrevInSection }}
+{{ if .NextInSection }}
+ {{ .NextInSection.Title }}
{{ end }}
+{{ if .PrevInSection }}
+ {{ .PrevInSection.Title }}
+{{ end }}
+
\ No newline at end of file