Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <p id="notice"><%= notice %></p>
  2.  
  3. <p>
  4. <strong>Title:</strong>
  5. <%= @blog_post.title %>
  6. </p>
  7.  
  8. <p>
  9. <strong>Author:</strong>
  10. <%= @blog_post.user.username %>
  11. </p>
  12.  
  13. <p>
  14. <strong>Blog entry:</strong>
  15. <%= @blog_post.blog_entry %>
  16. </p>
  17.  
  18. <%= link_to 'Edit Post', edit_blog_post_path(@blog_post) %>
  19. |
  20. <%= link_to 'Back', blog_posts_path %>
  21.  
  22.  
  23.  
  24. <div class="container">
  25. <%= render 'comments/form' %>
  26.  
  27. <!-- Brings comments over throught blog_post because of 'model' relationship -->
  28.  
  29.  
  30.  
  31. <div class = "row" >
  32. <% @blog_post.comments.each do |comment| %>
  33. <!-- <div class = "col-md-4"> -->
  34. <div class = "well" style="background-color: rgb(139, 161, 98); border-color: black;">
  35.  
  36. <p> <%= comment.user.username%> said... </p>
  37. <p> <%= comment.comment_entry %> </p>
  38. --------------------------------------
  39. </div>
  40. <!-- </div> -->
  41. <% end%>
  42. </div>
  43. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement