" for most, so this is a great substitute for
<%= render :partial => "thing", :collection => @coll, :spacer_template => "filename_to_file_with_hr_inside_it" %>
New version with code embedded:
<%= @coll.map { |item| render :partial => "thing", :locals => {:thing => item} }.join("
") %>
How can this be modified to also pass the counter value (ie. :thing_counter)?