From 58e5c7dbb625c52b691e2eb488811088bb12fc72 Mon Sep 17 00:00:00 2001 From: francium Date: Sat, 18 Apr 2020 13:05:25 -0400 Subject: [PATCH] Add 'noPostNavigation' option to hide next/previous post links --- README.md | 8 ++++++++ layouts/partials/nav.html | 2 ++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 095f99f..c4565a5 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,14 @@ paginate = 10 smartToc = true ``` +### Post Navigation +``` +[params] + noPostNavigation = true +``` + +This option disables links to next and previous post at the bottom of posts. + ### Disqus ``` disqusShortname = "xxxxxx" diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html index 5d98f72..f42ec15 100644 --- a/layouts/partials/nav.html +++ b/layouts/partials/nav.html @@ -1,3 +1,4 @@ +{{ if not .Site.Params.NoPostNavigation }} +{{ end }}