Skip to content

Instantly share code, notes, and snippets.

@wihodges
Last active December 31, 2015 19:09
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 wihodges/8031464 to your computer and use it in GitHub Desktop.
Save wihodges/8031464 to your computer and use it in GitHub Desktop.
Previous/Next pagination for Statamic entries.
<div class="pagination">
{{ if prev }}
<div class="previous">
<a href="{{ prev }}">Previous</a>
</div>
{{ endif }}
{{ if next }}
<div class="next">
<a href="{{ next }}">Next</a>
</div>
{{ endif }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment