mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-30 20:51:23 -04:00
12 lines
325 B
Plaintext
12 lines
325 B
Plaintext
= content_for :title, "New comment"
|
|
|
|
%section.blog-post
|
|
.card.post{ id: "post-#{@post.id}" }
|
|
.card-header
|
|
%h2.display-3= @post.subject
|
|
.card-body= render "posts/single", post: @post || @comment.post, subject: true
|
|
|
|
= render partial: "posts/comments", locals: { post: @post || @comment.post }
|
|
|
|
= render 'form'
|