blob: 3045c41aff28365494d12207aa57c2494f5d72fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
pageable: true
per_page: 10
section: "aktuelles"
---
<% 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 %>
|