Add a navigation a the bottom of posts

This commit is contained in:
Alexis Tacnet
2017-04-08 19:23:50 +02:00
parent 408a4f21fb
commit 0b4c2b5307
5 changed files with 150 additions and 1 deletions

View File

@@ -28,8 +28,24 @@
<div class="markdown">
{{ partial "content" . }}
<br>
<p><a href="{{ .Section | absURL }}">Back to posts</a></p>
</div>
{{ if .Site.Params.posts_navigation }}
<div class="navigation">
{{ if .PrevInSection }}
<div>
<img class="icon" src="/img/back.svg" alt="back" />
<a href="{{ .PrevInSection.Permalink }}">{{ .PrevInSection.Title }}</a>
</div>
{{ end }}
<div style="width: 100%;"></div>
{{ if .NextInSection }}
<div>
<a href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }}</a>
<img class="icon" src="/img/next.svg" alt="next" />
</div>
{{ end }}
</div>
{{ end }}
<br>
<div class="disqus">
{{ template "_internal/disqus.html" . }}