blob: 2cd39c60b1396d93abf37e763bcd7b67cf430154 (
plain) (
tree)
|
|
<% content_for :body_content_title, @blog_post.title %>
<% content_for :body_content_left do %>
<%= @blog_post.body %>
<% end %>
<% content_for :body_content_right do %>
<h2><%= t('.other') %></h2>
<ul id="blog_post">
<% @blog_posts.each do |blog_post| %>
<li>
<%= link_to blog_post.title, blog_post_url(blog_post) %>
</li>
<% end %>
</ul>
<% end %>
<%= render :partial => "/shared/content_page" %>
|