Yours
<h5>Comments:</h5>
<% @post.comments.each do |comment| %>
<div class='well span8'>
<p>
<em><%= comment.body %></em>
</p>
<p>
<span class='quiet'>posted by</span> <%= link_to comment.user.username, '' %> <small> at <%= display_datetime(comment.created_at) %> </small>
</p>
</div>
<% end %>
Wrapped
<h5>Comments:</h5>
<% @post.comments.each do |comment| %>
<% unless comment.new_record? %>
<div class='well span8'>
<p>
<em><%= comment.body %></em>
</p>
<p>
<span class='quiet'>posted by</span> <%= link_to comment.user.username, '' %> <small> at <%= display_datetime(comment.created_at) %> </small>
</p>
</div>
<% end %>
<% end %>