diff options
author | Brandon Mathis <brandon@imathis.com> | 2014-06-21 13:55:43 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2014-06-21 13:55:43 -0500 |
commit | 72ea6042e33f0b92e4923c3af00e923f19472573 (patch) | |
tree | 9d2fb6c30bc8463a8553f4c1962d9b3295e96559 /.themes/classic/source | |
parent | 695fe922a9c25d3f41fddccf9d2e4ba2fc02ef52 (diff) | |
parent | 06c04397053e46fe02fcecce589a2de76d21e160 (diff) | |
download | my_new_personal_website-72ea6042e33f0b92e4923c3af00e923f19472573.tar.xz my_new_personal_website-72ea6042e33f0b92e4923c3af00e923f19472573.zip |
Merge pull request #1589 from imathis/jekyll-2
Jekyll 2.0 compatability
Diffstat (limited to '')
-rw-r--r-- | .themes/classic/source/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.themes/classic/source/index.html b/.themes/classic/source/index.html index a114e5a8..64b665e4 100644 --- a/.themes/classic/source/index.html +++ b/.themes/classic/source/index.html @@ -12,11 +12,11 @@ layout: default {% endfor %} <div class="pagination"> {% if paginator.next_page %} - <a class="prev" href="{{paginator.next_page}}">← Older</a> + <a class="prev" href="{{paginator.next_page_path}}">← Older</a> {% endif %} <a href="/blog/archives">Blog Archives</a> {% if paginator.previous_page %} - <a class="next" href="{{paginator.previous_page}}">Newer →</a> + <a class="next" href="{{paginator.previous_page_path}}">Newer →</a> {% endif %} </div> </div> |