10 lines
308 B
Plaintext
10 lines
308 B
Plaintext
|
|
<ul class="pager">
|
|
<% if (page.prev){ %>
|
|
<li class="previous"><a href="<%- config.root %><%- page.prev_link %>">← <%- __('next')%></a></li>
|
|
<% } %>
|
|
<% if (page.next){ %>
|
|
<li class="next"><a href="<%- config.root %><%- page.next_link %>"><%- __('prev')%> →</a></li>
|
|
<% } %>
|
|
</ul>
|