Comments

<% if @posts.empty? %> <%= render "post_sets/blank" %> <% end %> <% @posts.each do |post| %>
<%= link_to(image_tag(post.preview_file_url), post_path(post)) %>
<%= render "comments/partials/index/list", :post => post, :comments => post.comments.recent.reverse, :show_header => true %>
<% end %> <%= sequential_paginator(@posts) %>
<%= render "comments/secondary_links" %>