20 lines
379 B
Plaintext
20 lines
379 B
Plaintext
---
|
|
pageable: true
|
|
per_page: 10
|
|
---
|
|
%h1
|
|
Articles tagged '#{tagname}'
|
|
- if paginate && num_pages > 1
|
|
%p
|
|
Page #{page_number} of #{num_pages}
|
|
- if prev_page
|
|
%p= link_to 'Previous page', prev_page
|
|
%ul
|
|
- page_articles.each_with_index do |article, i|
|
|
%li
|
|
= link_to article.title, article
|
|
|
|
- if paginate
|
|
- if next_page
|
|
%p= link_to 'Next page', next_page
|