commit c231154fcda6803b974916cb24a211d51ab4c714 parent 422643faded49d2de0480bfff55aebd4a792564f 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/single.html | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/themes/tale-mod/layouts/_default/single.html b/themes/tale-mod/layouts/_default/single.html @@ -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>