Files
danbooru/app/views/comments/index_by_post.html.erb
2011-03-13 03:54:32 -04:00

15 lines
500 B
Plaintext

<div id="c-comments">
<div id="a-index">
<% @posts.each do |post| %>
<div class="post">
<div class="preview">
<%= link_to(image_tag(post.preview_file_url), post_path(post)) %>
</div>
<%= render :partial => "comments/partials/index/list", :locals => {:post => post, :comments => post.comments.recent.reverse, :show_header => true} %>
<div class="clearfix"></div>
</div>
<% end %>
</div>
</div>
<%= render "comments/secondary_links" %>