Skip to content

Instantly share code, notes, and snippets.

@nathanlong
Created December 11, 2014 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathanlong/834de5ea103da60d13c2 to your computer and use it in GitHub Desktop.
Save nathanlong/834de5ea103da60d13c2 to your computer and use it in GitHub Desktop.
jekyll next/prev navigation
<section class="post-nav container clearfix">
{% if page.previous.url %}
<a class="prev" href="{{page.previous.url}}">&larr; {{page.previous.title}}</a>
{% endif %}
{% if page.next.url %}
<a class="next" href="{{page.next.url}}">{{page.next.title}} &rarr;</a>
{% endif %}
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment