28 lines
714 B
Plaintext
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 %>
|