show.html.erb
Comments
<% unless @post.comments.blank? %><%= render :partial => 'comments/comment', :collection => @post.comments %><% else %>No one has commented yet.
<% end %>
_comment.html.erb
<%=h comment.user.login %><%=h comment.body %><%= render :partial => 'comments/reply_link', :locals => {:comment => @comment} %>
