aboutsummaryrefslogblamecommitdiffstats
path: root/app/views/blog_posts/show.html.erb
blob: cf51e0c2045a387a908c7b460bb6808d1979ee7b (plain) (tree)
1
2
3
4
5
6
7
8


                                                       

                        

        
                                                    









                                                                                                                      
           


































                                                                                       


                                        

                                                                              
                                      
 










                                                                


                                               
<% content_for :body_content_title, @blog_post.title %>

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

  <hr />

  <% if (categories = @blog_post.categories).any? %>
    <div class='post_categories'>
      <span class='filed_in'><%= t('.filed_in') %></span>
      <ul>
        <% categories.each_with_index do |category, index| %>
          <li>
            <%= link_to category.title, blog_category_url(category) -%><%= ',' if index < ((categories.length) - 1) %>
          </li>
        <% end %>
      </ul>
    </div>
  <% end %>

  <hr />
  <% if (comments = @blog_post.comments.approved).any? %>
    <h2><%= t('.comments') %></h2>
    <% comments.each do |comment| %>
      <div class='blog_comment_message'>
        <p>
          <%= comment.message.to_s.gsub("\r\n\r\n", "</p><p>").gsub("\r\n", "<br/>") %>
        </p>
      </div>
      <p class='blog_comment_author'>
        <%= t('.comment_by', :who => comment.name) %>
        <%= ", #{time_ago_in_words(comment.created_at)}".html_safe %>
      </p>
    <% end %>
    <hr />
  <% end %>

  <% form_for [:blog_post, @blog_comment] do |f| %>
    <div class='field'>
      <%= f.label :name %>
      <%= f.text_field :name %>
    </div>
    <div class='field'>
      <%= f.label :email %>
      <%= f.text_field :email %>
    </div>
    <div class='field message_field'>
      <%= f.label :message %>
      <%= f.text_area :message, :rows => 6 %>
    </div>
    <div class='field form-actions'>
      <%= f.submit t('.submit') %>
    </div>
  <% 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 => "side_bar" %>

  <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" %>
<% content_for :head do %>
  <%= stylesheet_link_tag 'refinerycms-blog' %>
<% end %>