Files
dss/templates/_pagination.ejs
2020-12-22 14:54:24 -08:00

17 lines
453 B
Plaintext

<section id="pagination" >
<div class="container" >
<div class="row" style="padding-bottom: 2rem" >
<div class="twelve columns" >
<% for (let i = 1; i <= totalPages; i++) { %>
<% if (i == p) { %>
<span><%- i %></span>&nbsp;
<% } else { %>
<a href="<%- path %>p=<%= i %>"><%- i %></a>&nbsp;
<% } %>
<% } %>
<h5>Results: <%- count %></h4>
</div>
</div>
</div>
</section>