aboutsummaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@andeuin.net>2014-02-06 23:53:45 +0100
committerHarald Eilertsen <haraldei@andeuin.net>2014-02-06 23:53:45 +0100
commitcd29f12cf546d3afa883ce8e67eb9d5347875714 (patch)
treeaf5a1b9c589e5d0efe1866fe93d1493adb16e2d1 /app/views
parenteef973923042a20d90dd66fa653bd97e12126780 (diff)
downloadhmnoweb-cd29f12cf546d3afa883ce8e67eb9d5347875714.tar.gz
hmnoweb-cd29f12cf546d3afa883ce8e67eb9d5347875714.tar.bz2
hmnoweb-cd29f12cf546d3afa883ce8e67eb9d5347875714.zip
Make sidebars nicer.
- Module headings now go all the way out. - Side body content is included like a module only if not empty.
Diffstat (limited to 'app/views')
-rw-r--r--app/views/common/_right_sidebar.html.erb7
-rw-r--r--app/views/sidebar_modules/_sidebar_blog_category.html.erb5
-rw-r--r--app/views/sidebar_modules/_sidebar_module.html.erb2
3 files changed, 11 insertions, 3 deletions
diff --git a/app/views/common/_right_sidebar.html.erb b/app/views/common/_right_sidebar.html.erb
index 023730d..3b17356 100644
--- a/app/views/common/_right_sidebar.html.erb
+++ b/app/views/common/_right_sidebar.html.erb
@@ -1,5 +1,10 @@
<div id="right_sidebar">
- <%= raw @page.content_for(:side_body) %>
+ <% unless @page.part_with_title("Side Body").body.empty? %>
+ <div class="sidebar_module">
+ <h1>Sjefen melder</h1>
+ <div class="inner"><%= raw @page.content_for(:side_body) %></div>
+ </div>
+ <% end %>
<%= render_sidebar_modules @sidebar_modules, :position => 2 %>
<%= render "/refinery/blog/shared/rss_feed" %>
<%= render "/refinery/blog/shared/categories" %>
diff --git a/app/views/sidebar_modules/_sidebar_blog_category.html.erb b/app/views/sidebar_modules/_sidebar_blog_category.html.erb
index 53556e7..5dc0a27 100644
--- a/app/views/sidebar_modules/_sidebar_blog_category.html.erb
+++ b/app/views/sidebar_modules/_sidebar_blog_category.html.erb
@@ -1,8 +1,11 @@
<% content_for "sidebar_module_#{sidebar_module.title}_body" do %>
<% sidebar_module.body.each do |post| %>
- <%= content_tag :div, :class => :sidebar_blog_headline do %>
+ <%= content_tag :header, :class => :sidebar_blog_headline do %>
<%= link_to post.title, refinery.blog_post_path(post) %>
<% end %>
+ <%= content_tag :article, :class => :sidebar_blog_content do %>
+ <%= blog_post_teaser(post) %>
+ <% end %>
<% end %>
<% end %>
<%= render 'sidebar_modules/sidebar_module', :sidebar_module => sidebar_module %>
diff --git a/app/views/sidebar_modules/_sidebar_module.html.erb b/app/views/sidebar_modules/_sidebar_module.html.erb
index 2fb989c..ecd5375 100644
--- a/app/views/sidebar_modules/_sidebar_module.html.erb
+++ b/app/views/sidebar_modules/_sidebar_module.html.erb
@@ -1,5 +1,5 @@
<div id="sidebar_module_<%= sidebar_module.title.parameterize %>" class="sidebar_module">
<h1><%= sidebar_module.title %></h1>
- <div><%= content_for "sidebar_module_#{sidebar_module.title}_body" %></div>
+ <div class="inner"><%= content_for "sidebar_module_#{sidebar_module.title}_body" %></div>
</div>