27 lines
783 B
Plaintext
27 lines
783 B
Plaintext
<div id="c-explore-posts">
|
|
<div id="a-popular">
|
|
<h1>Most Viewed - <%= @post_set.presenter.date %></h1>
|
|
|
|
<%= render "posts/partials/common/inline_blacklist" %>
|
|
|
|
<%= @post_set.presenter.post_previews_html(self) %>
|
|
|
|
<div class="paginator">
|
|
<menu>
|
|
<li><%= link_to "< Previous", viewed_explore_posts_path(:date => 1.day.ago(@date).to_date) %></li>
|
|
<li><%= link_to "Next >", viewed_explore_posts_path(:date => 1.day.since(@date).to_date) %></li>
|
|
</menu>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "posts/partials/common/secondary_links" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Most Viewed - <%= Danbooru.config.app_name %>
|
|
<% end %>
|
|
|
|
<% content_for(:html_header) do %>
|
|
<meta name="description" content="The most viewed posts per day">
|
|
<% end %>
|