<%= @post.title %>

<%= human_date @post.date %>
<%= @post.body_html %>

<% if @post.category %> Posted in category <%= link_to @post.category, "/categories/#{urlify @post.category}" %>. <% end %> <% unless @post.tag_list.empty? %> Tagged with <%= @post.tag_list.map {|tag| link_to tag, "/tags/#{tag}" }.join(', ') %>. <% end %>

<% if @comments %>

Comments

<%= render '_comments.rhtml', :comments => @comments %>
<% end %>

Leave a comment

<%= render '_comment_form.rhtml', :post => @post %>