Skip to content

Instantly share code, notes, and snippets.

@shankara-subramani
Last active September 4, 2016 12:45
Show Gist options
  • Save shankara-subramani/f283a673708c8886566fb5af53643053 to your computer and use it in GitHub Desktop.
Save shankara-subramani/f283a673708c8886566fb5af53643053 to your computer and use it in GitHub Desktop.
Jekyll page.next and page.previous. See this gist for style: https://gist.github.com/shankariyerr/5d1af3c4b24acb4d06d971c63dea988a
<div class="pagination">
<div id="post-nav">
{% if page.previous.url %}
<a class="pagination-item older" href="{{page.previous.url}}">&laquo; Previous</a>
{% endif %}
{% if page.next.url %}
<a class="pagination-item newer" href="{{page.next.url}}">Next &raquo;</a>
{% endif %}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment