Files
growstuff/app/views/posts/index.html.haml
2013-03-23 18:23:53 +11:00

15 lines
446 B
Plaintext

= content_for :title, "Recent #{Growstuff::Application.config.site_name} member posts"
%p= link_to 'Post something', new_post_path, :class => 'btn btn-primary'
%div.pagination
= page_entries_info @posts, :model => "posts"
= will_paginate @posts
- @posts.each do |post|
= render :partial => "single", :locals => { :post => post, :subject => true }
%div.pagination
= page_entries_info @posts, :model => "posts"
= will_paginate @posts