Skip to content

Instantly share code, notes, and snippets.

@xjamundx
Created April 19, 2011 05:29
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 xjamundx/926860 to your computer and use it in GitHub Desktop.
Save xjamundx/926860 to your computer and use it in GitHub Desktop.
a partial view used with the express-pagination.js example
<nav class="pagination">
<% if (locals.prev) { %>
<a href="/pages/<%= (page + 1) %>">Previous</a>
<% } %>
<% if (locals.next) { %>
<a href="/pages/<%= (page - 1) %>">Next</a>
<% } %>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment