10 lines
402 B
Text
10 lines
402 B
Text
- content_for(:title, link_to(@subcreddit.name, @subcreddit))
|
|
== render 'post', post: @post
|
|
- if @post.comments?
|
|
.title= "all #{@post.comments_count} comments"
|
|
- else
|
|
.title= "no comments (yet)"
|
|
= "Commenting as: #{current_user.username}"
|
|
== render 'comments/form', subcreddit: @subcreddit, post: @post, comment: @post.comments.build, parent: nil
|
|
.comments.contents
|
|
== nested_comments(@comments)
|