Files
danbooru/app/views/comments/index_by_post.html.erb
2011-10-23 16:55:57 -04:00

28 lines
714 B
Plaintext

<div id="c-comments">
<div id="a-index">
<h1>Comments</h1>
<% if @posts.empty? %>
<%= render "post_sets/blank" %>
<% end %>
<% @posts.each do |post| %>
<div class="post">
<div class="preview">
<%= link_to(image_tag(post.preview_file_url), post_path(post)) %>
</div>
<%= render "comments/partials/index/list", :post => post, :comments => post.comments.recent, :show_header => true %>
<div class="clearfix"></div>
</div>
<% end %>
<%= sequential_paginator(@posts) %>
</div>
</div>
<%= render "comments/secondary_links" %>
<% content_for(:page_title) do %>
Comments - <%= Danbooru.config.app_name %>
<% end %>