25 lines
533 B
Plaintext
25 lines
533 B
Plaintext
<div id="c-pools">
|
|
<div id="a-show">
|
|
<h1>Pool: <%= @pool.name %></h1>
|
|
|
|
<div id="description">
|
|
<%= format_text(@pool.description) %>
|
|
</div>
|
|
|
|
<section id="content">
|
|
<%= @post_set.presenter.post_previews_html %>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<div class="paginator">
|
|
<%= numbered_paginator(@post_set) do |page| %>
|
|
<%= link_to(page, pool_path(@pool, :page => page)) %>
|
|
<% end %>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "secondary_links" %>
|
|
|