diff options
Diffstat (limited to '')
-rw-r--r-- | .themes/classic/source/index.html | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/.themes/classic/source/index.html b/.themes/classic/source/index.html index 3f6b11b8..8754a82b 100644 --- a/.themes/classic/source/index.html +++ b/.themes/classic/source/index.html @@ -11,13 +11,17 @@ blog_index: true </article> {% endfor %} <nav role="pagination"> - {% if paginator.next_page %} - <a href="/page{{paginator.next_page}}/">← Older</a> - {% endif %} - <a href="/blog/archive.html">Blog Archive</a> - {% if paginator.previous_page %} - <a href="/page{{paginator.previous_page}}/">Newer →</a> - {% endif %} + <div> + {% if paginator.next_page %} + <a class="prev" href="/page{{paginator.next_page}}/">← Older</a> + {% endif %} + <a href="/blog/archives/index.html">Blog Archives</a> + {% if paginator.previous_page and paginator.previous_page > 1 %} + <a class="next" href="/page{{paginator.previous_page}}/">Newer →</a> + {% elsif paginator.previous_page %} + <a class="next" href="/">Newer →</a> + {% endif %} + </div> </nav> {% if site.disqus_short_name %} <script type="text/javascript"> |