aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog_posts/show.html.erb
blob: 7a4c9c36eeb6a33dacd860958e590b843d1e6627 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<% content_for :body_content_title, @blog_post.title %>

<% content_for :body_content_left do %>
  <%= @blog_post.body %>

  <% if (categories = @blog_post.categories).any? %>
    <%= t('.filed_in') %>
    <ul>
      <% categories.each do |category| %>
        <li>
          <%= link_to category.title, blog_category_url(category) %>
        </li>
      <% end %>
    </ul>
  <% end %>
<% end %>

<% content_for :body_content_right do %>
  <h2><%= t('.created_at_title') %></h2>
  <%= t('.created_at', :when => @blog_post.created_at.strftime('%d %B %Y')) %>
  <%= render :partial => "sidebar" %>

  <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" %>