Guest User

Untitled

a guest
Feb 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <h1><%= @author.full_name -%></h1>
  2.  
  3. <h2>Posts</h2>
  4. <% for post in @author.posts -%>
  5. <h3><%= post.title -%></h3>
  6. <p><%= post.text -%></p>
  7. <h4>Tags</h4>
  8. <p><%= post.tags.map(&:name).join(", ") %></p>
  9.  
  10. <h4>Comments</h4>
  11. <div class="comments">
  12. <% for comment in post.comments -%>
  13. <h5>by <%= mail_to comment.email, comment.author, :encode => "javascript" -%></h5>
  14. <p><%= comment.text -%></p>
  15. <% end -%>
  16. </div>
  17. <% end -%>
  18.  
  19. <%= link_to 'Edit', edit_author_path(@author) %> |
  20. <%= link_to 'Back', authors_path %>
Add Comment
Please, Sign In to add comment