SZMUNC/themes/tstyle/layout/partials/pagination.ejs

21 lines
683 B
Plaintext
Raw Normal View History

2020-08-31 16:38:50 +00:00
<nav id="pagination">
<% if (page.prev_link) { %>
<a href="<%=url_for(page.prev_link)%>" class="prev">&larr; Prev</a>
<% } else if (page.prev && page.prev.path) { %>
<a href="<%=url_for(page.prev.path)%>" class="prev">&larr; Prev</a>
<% } %>
<% if (typeof page.current === 'number' && typeof page.total === 'number') { %>
<span class="page-number">
Page <%=page.current%> of <%=page.total%>
</span>
<% } %>
<% if (page.next_link) { %>
<a href="<%=url_for(page.next_link)%>" class="next">Next &rarr;</a>
<% } else if (page.next && page.next.path) { %>
<a href="<%=url_for(page.next.path)%>" class="next">Next &rarr;</a>
<% } %>
</nav>