> <%= link_to("edit", { :controller => "admin/content", :action => "edit", :id => @article.id }, :class => "admintools", :style => "display: none", :id => "admin_article") %>

<%=h @article.title %>

<%= _("Posted by")%> <%= author_link(@article) %> <%= js_distance_of_time_in_words_to_now @article.published_at.utc %>

<%= html(@article) %>

<%= article_links @article %>

<% if @article.allow_comments? or @article.published_comments.size > 0 -%>

<%= _('Comments') %>

<% unless @article.comments_closed? -%>

<%= _("Leave a response")%>

<% end -%>
    <% if @article.published_comments.blank? %> <% else %> <%= render(:partial => "/articles/comment", :collection => @article.published_comments) %> <% end %>
<% end -%> <% if @article.allow_pings? -%>

<%= _("Trackbacks")%>

<%= _("Use the following link to trackback from your own site")%>:
<%= @article.trackback_url %>

<%= content_tag(:ol, render(:partial => "/articles/trackback", :collection => @article.published_trackbacks), :id => 'trackbackList', :class => 'trackback-list') unless @article.published_trackbacks.blank? %> <% end -%>

<%= _("RSS feed for this post")%> <% if @article.allow_pings? -%> <%= _("trackback uri")%> <% end -%>

<% unless @article.comments_closed? -%> <%= render :partial => '/articles/comment_box' %> <% else -%>

<%= _("Comments are disabled")%>

<% end -%>