Created
December 11, 2014 17:04
-
-
Save nathanlong/834de5ea103da60d13c2 to your computer and use it in GitHub Desktop.
jekyll next/prev navigation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="post-nav container clearfix"> | |
{% if page.previous.url %} | |
<a class="prev" href="{{page.previous.url}}">← {{page.previous.title}}</a> | |
{% endif %} | |
{% if page.next.url %} | |
<a class="next" href="{{page.next.url}}">{{page.next.title}} →</a> | |
{% endif %} | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment