blob: d238f2a0585bea5de8c259039159fda6439c66a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
pageable: true
per_page: 10
---
<% if paginate && num_pages > 1 %>
<p>Seite <%= page_number %> von <%= num_pages %></p>
<% if prev_page %>
<p><%= link_to 'Vorherige Seite', prev_page %></p>
<% end %>
<% end %>
<%= partial "article", collection: page_articles %>
<% if paginate %>
<% if next_page %>
<p><%= link_to 'Nächste Seite', next_page %></p>
<% end %>
<% end %>
|