diff options
-rw-r--r-- | blog/_layouts/post.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/blog/_layouts/post.html b/blog/_layouts/post.html index 17d4979..cb33296 100644 --- a/blog/_layouts/post.html +++ b/blog/_layouts/post.html @@ -9,10 +9,10 @@ layout: default </section> <footer> {% if page.previous %} - <div class="prev-post"><a href="{{ page.previous.url }}">{{ page.previous.title }}</a></div> + <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 }}">{{ page.next.title }}</a></div> + <div class="next-post"><a href="{{ page.next.url | prepend: site.baseurl }}">{{ page.next.title }}</a></div> {% endif %} </footer> </article> |