Files
growstuff/app/views/comments/index.html.haml
2017-02-04 14:07:59 +13:00

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')