Sha256: 5eba937abad84d74b872c391e2276eb9d6a4b0b7d2af31eb41c7035c4f3d4d9d
Contents?: true
Size: 726 Bytes
Versions: 3
Compression:
Stored size: 726 Bytes
Contents
--- pageable: true --- <h1>Archive for <% case page_type when 'day' %> <%= Date.new(year, month, day).strftime('%b %e %Y') %> <% when 'month' %> <%= Date.new(year, month, 1).strftime('%b %Y') %> <% when 'year' %> <%= year %> <% end %> </h1> <% if paginate %> <p>Page <%= page_number %> of <%= num_pages %></p> <% if prev_page %> <p><%= link_to 'Previous page', prev_page %></p> <% end %> <% end %> <ul> <% page_articles.each_with_index do |article, i| %> <li><%= link_to article.title, article %> <span><%= article.date.strftime('%b %e') %></span></li> <% end %> </ul> <% if paginate %> <% if next_page %> <p><%= link_to 'Next page', next_page %></p> <% end %> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems