aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/sidebar_modules/_sidebar_blog_category.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/sidebar_modules/_sidebar_blog_category.html.erb')
-rw-r--r--app/views/sidebar_modules/_sidebar_blog_category.html.erb5
1 files changed, 4 insertions, 1 deletions
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 %>