Add 'noPostNavigation' option to hide next/previous post links

This commit is contained in:
francium
2020-04-18 13:05:25 -04:00
committed by Carson Ip
parent 5d01f8158c
commit 58e5c7dbb6
2 changed files with 10 additions and 0 deletions

View File

@@ -51,6 +51,14 @@ paginate = 10
smartToc = true smartToc = true
``` ```
### Post Navigation
```
[params]
noPostNavigation = true
```
This option disables links to next and previous post at the bottom of posts.
### Disqus ### Disqus
``` ```
disqusShortname = "xxxxxx" disqusShortname = "xxxxxx"

View File

@@ -1,3 +1,4 @@
{{ if not .Site.Params.NoPostNavigation }}
<nav id="article-nav"> <nav id="article-nav">
{{ if .NextPage }} {{ if .NextPage }}
<a href="{{ .NextPage.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap"> <a href="{{ .NextPage.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
@@ -12,3 +13,4 @@
</a> </a>
{{ end }} {{ end }}
</nav> </nav>
{{ end }}