diff options
author | Brandon Mathis <brandon@imathis.com> | 2014-06-21 10:34:55 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2014-06-21 10:34:55 -0500 |
commit | 52f911964577623b2091d306957397ef3b8ccf2d (patch) | |
tree | 346df9277c6c67b6afd7eddbe3cacaf2c96012e1 /.themes | |
parent | 695fe922a9c25d3f41fddccf9d2e4ba2fc02ef52 (diff) | |
download | my_new_personal_website-52f911964577623b2091d306957397ef3b8ccf2d.tar.xz my_new_personal_website-52f911964577623b2091d306957397ef3b8ccf2d.zip |
Initial update to be compatible with Jekyll 2
Diffstat (limited to '.themes')
-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> |