mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-20 07:17:53 -05:00
15 lines
446 B
Plaintext
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
|