refactoring views

This commit is contained in:
albert
2011-08-16 18:47:01 -04:00
parent c8067a4691
commit 24bf21540a
46 changed files with 244 additions and 298 deletions

View File

@@ -1,28 +1,28 @@
<div id="c-posts">
<div id="a-index">
<aside id="sidebar">
<%= render :partial => "posts/partials/common/search", :locals => {:path => posts_path, :tags => params[:tags]} %>
<%= render "posts/partials/common/search", :path => posts_path, :tags => params[:tags] %>
<%= render :partial => "posts/partials/index/mode_menu" %>
<%= render "posts/partials/index/mode_menu" %>
<section id="tag-box">
<h1>Tags</h1>
<%= @post_set.presenter.tag_list_html(self) %>
</section>
<%= render :partial => "posts/partials/index/blacklist" %>
<%= render "posts/partials/index/blacklist" %>
</aside>
<section id="content">
<%= render :partial => "wiki_pages/excerpt", :locals => {:post_set => @post_set} %>
<%= render :partial => "posts/partials/index/posts", :locals => {:post_set => @post_set} %>
<%= render "wiki_pages/excerpt", :post_set => @post_set %>
<%= render "posts/partials/index/posts", :post_set => @post_set %>
</section>
<% content_for(:page_title) do %>
/<%= @post_set.tag_string %>
<% end %>
<%= render :partial => "posts/partials/common/secondary_links" %>
<%= render "posts/partials/common/secondary_links" %>
</div>
</div>

View File

@@ -1,12 +1,12 @@
<div id="c-posts">
<div id="a-show">
<aside id="sidebar">
<%= render :partial => "posts/partials/common/search", :locals => {:path => posts_path, :tags => params[:tags]} %>
<%= render "posts/partials/common/search", :path => posts_path, :tags => params[:tags] %>
<% if @post.pools.any? %>
<section id="pool-sidebar">
<h1>Pools</h1>
<%= render :partial => "posts/partials/show/pools", :locals => {:post => @post} %>
<%= render "posts/partials/show/pools", :post => @post %>
</section>
<% end %>
@@ -17,12 +17,12 @@
<section>
<h1>Information</h1>
<%= render :partial => "posts/partials/show/information", :locals => {:post => @post} %>
<%= render "posts/partials/show/information", :post => @post %>
</section>
<section>
<h1>Options</h1>
<%= render :partial => "posts/partials/show/options", :locals => {:post => @post} %>
<%= render "posts/partials/show/options", :post => @post %>
</section>
<section>
@@ -36,7 +36,7 @@
</aside>
<section id="content">
<%= render :partial => "posts/partials/show/notices", :locals => {:post => @post} %>
<%= render "posts/partials/show/notices", :post => @post %>
<section id="image-container">
<div id="note-container"></div>
@@ -50,7 +50,7 @@
</menu>
<section id="comments">
<%= render :partial => "comments/partials/index/list", :locals => {:comments => @post.comments, :post => @post, :show_header => false} %>
<%= render "comments/partials/index/list", :comments => @post.comments, :post => @post, :show_header => false %>
</section>
<section id="notes">
@@ -62,7 +62,7 @@
</section>
<section id="edit">
<%= render :partial => "posts/partials/show/edit", :locals => {:post => @post} %>
<%= render "posts/partials/show/edit", :post => @post %>
</section>
</section>
</div>
@@ -93,4 +93,4 @@
<meta name="post-is-deleted" content="<%= @post.is_deleted? %>">
<% end %>
<%= render :partial => "posts/partials/common/secondary_links" %>
<%= render "posts/partials/common/secondary_links" %>