Guest User

Untitled

a guest
Apr 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. %h2
  2. = @post.title
  3. %p
  4. = @post.created_at.to_s(:long)
  5. %p
  6. :markdown
  7. = @post.body
  8. %p
  9. = link_to 'Edit', edit_post_path(@post)
  10. = link_to 'Back', posts_path
  11. %h2 Comments
  12. = for comment in @post.comments
  13. :markdown
  14. = comment.body
  15. %p
  16. %small
  17. = comment.author
  18. = form_tag :action => "comment", :id => @post
  19. %p
  20. %label
  21. Name:
  22. %br
  23. = text_field "comment", "author"
  24. %p
  25. %label
  26. Comment:
  27. %br
  28. = text_area "comment", "body"
  29. %p
  30. = submit_tag "Comment"
Add Comment
Please, Sign In to add comment