mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-19 06:15:44 -04:00
16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
= content_for :title, "Recent comments"
|
|
|
|
%div.pagination
|
|
= page_entries_info @comments, :model => "comments"
|
|
= will_paginate @comments
|
|
|
|
- @comments.each do |comment|
|
|
%h2
|
|
Comment on
|
|
= link_to comment.post.subject, comment.post
|
|
= render :partial => "single", :locals => { :comment => comment }
|
|
|
|
%div.pagination
|
|
= page_entries_info @comments, :model => "comments"
|
|
= will_paginate @comments
|