summaryrefslogtreecommitdiff
path: root/themes/hexo-theme-freemind.bithack/layout/_partial/post/pagination.ejs
blob: 9bde2455de4e93c591014a54c321bb1ac0d4006b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="pagination">

    <% if (page.prev || page.next) { %>
    <% if (page.prev){ %>
    <a href="<%- config.root %><%- page.prev.path %>" 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="<%- config.root %>" type="button" class="btn btn-default"><i class="fa fa-home"></i>Home</a>
    <% if (page.next){ %>
    <a href="<%- config.root %><%- page.next.path %>" 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>