diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2017-08-28 22:23:44 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2017-08-28 22:23:44 +0200 |
commit | 18608c867a6cbe7880ea0273c463d4be93f2cc9f (patch) | |
tree | 83a5257811f15e7eec5bdcc600d8207b4fb15d61 /blog/_layouts/post.html | |
parent | 8715cb575680b18da3f1292d90f6a9ec10e12864 (diff) | |
download | norsk-urskog-main-18608c867a6cbe7880ea0273c463d4be93f2cc9f.tar.gz norsk-urskog-main-18608c867a6cbe7880ea0273c463d4be93f2cc9f.tar.bz2 norsk-urskog-main-18608c867a6cbe7880ea0273c463d4be93f2cc9f.zip |
Fix prev/next links for posts.
Now points to prev/next post in same language as the current post.
Diffstat (limited to 'blog/_layouts/post.html')
-rw-r--r-- | blog/_layouts/post.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/blog/_layouts/post.html b/blog/_layouts/post.html index 8a3cccb..f4f2a59 100644 --- a/blog/_layouts/post.html +++ b/blog/_layouts/post.html @@ -13,11 +13,11 @@ layout: default {{ content }} </section> <footer> - {% if page.previous %} - <div class="prev-post"><a href="{{ page.previous.url | prepend: site.baseurl }}">{{ page.previous.title }}</a></div> - {% endif %} - {% if page.next %} - <div class="next-post"><a href="{{ page.next.url | prepend: site.baseurl }}">{{ page.next.title }}</a></div> - {% endif %} + <div class="prev-post"> + {% link_to_prev_page Forrige: %} + </div> + <div class="next-post"> + {% link_to_next_page Neste: %} + </div> </footer> </article> |