tChange pagination arrows in posts - andersdamsgaard.com - my photography webpage
HTML git clone git://src.adamsgaard.dk/andersdamsgaard.com
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit c231154fcda6803b974916cb24a211d51ab4c714
DIR parent 422643faded49d2de0480bfff55aebd4a792564f
HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Fri, 2 Nov 2018 17:13:08 +0100
Change pagination arrows in posts
Diffstat:
M themes/tale-mod/layouts/_default/s… | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
---
DIR diff --git a/themes/tale-mod/layouts/_default/single.html b/themes/tale-mod/layouts/_default/single.html
t@@ -50,10 +50,12 @@
<div class="pagination">
{{- if .PrevPage }}
- <a href="{{ .PrevPage.URL }}" class="left arrow">← Previous</a>
+ <!-- <a href="{{ .PrevPage.URL }}" class="left arrow">← Previous</a> -->
+ <a href="{{ .PrevPage.URL }}" class="right arrow">Next →</a>
{{- end }}
{{- if .NextPage }}
- <a href="{{ .NextPage.URL }}" class="right arrow">Next →</a>
+ <!-- <a href="{{ .NextPage.URL }}" class="right arrow">Next →</a> -->
+ <a href="{{ .NextPage.URL }}" class="left arrow">← Previous</a>
{{- end }}
<a href="{{ .Site.BaseURL }}" class="top">Home</a>