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

   <% if (page.prev || page.next) { %>
    <% if (page.prev){ %>
     <a href="<%- config.root %><%- 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="<%- 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_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>