39 lines
969 B
Plaintext
39 lines
969 B
Plaintext
<div id="c-favorites">
|
|
<div id="a-index">
|
|
<aside id="sidebar">
|
|
<%= render "posts/partials/common/search", :path => favorites_path, :tags => @favorite_set.tag_string %>
|
|
|
|
<% if CurrentUser.is_gold? %>
|
|
<section id="mode-box">
|
|
<%= render "posts/partials/index/mode_menu" %>
|
|
</section>
|
|
<% end %>
|
|
|
|
<section id="blacklist-box">
|
|
<h1>Blacklisted</h1>
|
|
<ul id="blacklist-list">
|
|
</ul>
|
|
</section>
|
|
</aside>
|
|
|
|
<section id="content">
|
|
<h1>Favorites</h1>
|
|
|
|
<%= render "posts/partials/index/edit" %>
|
|
|
|
<div id="posts">
|
|
<%= @favorite_set.presenter.post_previews_html(self) %>
|
|
|
|
<%= sequential_paginator(@favorite_set.favorites) %>
|
|
</div>
|
|
</section>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Favorites - <%= @user.pretty_name %> - <%= Danbooru.config.app_name %>
|
|
<% end %>
|
|
|
|
<%= render "posts/partials/common/secondary_links" %>
|
|
</div>
|
|
</div>
|
|
|