mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-30 04:57:50 -05:00
13 lines
257 B
Plaintext
13 lines
257 B
Plaintext
%a{ name: "comments" }
|
|
- if post.comments
|
|
%hr/
|
|
%h2
|
|
= comment_icon
|
|
= localize_plural(post.comments, Comment)
|
|
- post.comments.post_order.each do |comment|
|
|
= render "comments/single", comment: comment
|
|
|
|
- else
|
|
%h2 There are no comments yet
|
|
|