mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-24 17:54:59 -04:00
21 lines
482 B
Plaintext
21 lines
482 B
Plaintext
= content_for :title, "Recent comments"
|
|
|
|
.pagination
|
|
= page_entries_info @comments
|
|
= will_paginate @comments
|
|
|
|
- @comments.each do |comment|
|
|
%h2
|
|
Comment on
|
|
= link_to comment.post.subject, comment.post
|
|
= render partial: "single", locals: { comment: comment }
|
|
|
|
.pagination
|
|
= page_entries_info @comments
|
|
= will_paginate @comments
|
|
|
|
%p
|
|
Subscribe to the #{ENV['GROWSTUFF_SITE_NAME']}
|
|
= succeed "." do
|
|
= link_to "comments RSS feed", comments_path(format: 'rss')
|