--- pageable: true per_page: 10 --- <% if paginate && num_pages > 1 %>

Page <%= page_number %> of <%= num_pages %>

<% if prev_page %>

<%= link_to 'Previous page', prev_page %>

<% end %> <% end %> <% page_articles.each_with_index do |article, i| %>

<%= link_to article.title, article %> <%= article.date.strftime('%b %e') %>

<%= article.body %> <% end %> <% if paginate %> <% if next_page %>

<%= link_to 'Next page', next_page %>

<% end %> <% end %>