aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog_posts/show.html.erb
blob: 2cd39c60b1396d93abf37e763bcd7b67cf430154 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<% 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" %>