Blog/themes/freemind/layout/_partial/index_pagination.ejs

19 lines
898 B
Text
Raw Normal View History

2022-03-16 15:24:24 +01:00
<div class="pagination">
<% if (page.prev || page.next) { %>
<% if (page.prev){ %>
<a href="<%- url_for('./') %><%- page.prev_link %>" type="button" class="btn btn-default"><i class="fa fa-arrow-circle-o-left"></i> <%= __('prev') %></a>
<% } else { %>
<a type="button" class="btn btn-default disabled"><i class="fa fa-arrow-circle-o-left"></i><%= __('prev') %></a>
<% } %>
<a href="<%- url_for('./') %>" type="button" class="btn btn-default"><i class="fa fa-home"></i>主页</a>
<% if (page.next){ %>
<a href="<%- url_for('./') %><%- page.next_link %>" type="button" class="btn btn-default "><%= __('next') %><i class="fa fa-arrow-circle-o-right"></i></a>
<% } else { %>
<a type="button" class="btn btn-default disabled"><%= __('next') %><i class="fa fa-arrow-circle-o-right"></i></a>
<% } %>
<% } %>
</div>