Skip to content

Instantly share code, notes, and snippets.

@erjjones
Created March 8, 2012 03:33
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 erjjones/1998418 to your computer and use it in GitHub Desktop.
Save erjjones/1998418 to your computer and use it in GitHub Desktop.
Jekyll Pagination
<div class="span9 column">
<p class="pull-right">{% if page.previous.url %} <a href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}"><i class="icon-chevron-left"></i></a> {% endif %} {% if page.next.url %} <a href="{{page.next.url}}" title="Next Post: {{page.next.title}}"><i class="icon-chevron-right"></i></a> {% endif %} </p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment