<%= post.title %>
<%= post.published_at.try(:strftime, '%b %d, %Y') || 'draft' %><%= " by #{post.author.username}" if post.author.present? %>
<%= link_to refinery_icon_tag("application_go.png"), blog_post_url(post),
:title => t('.view_live_html'),
:target => "_blank" %>
<%= link_to refinery_icon_tag("application_edit.png"), edit_admin_blog_post_path(post),
:title => t('.edit') %>
<%= link_to refinery_icon_tag("delete.png"), admin_blog_post_path(post),
:class => "cancel confirm-delete",
:title => t('.delete'),
:method => :delete,
:confirm => t('shared.admin.delete.message', :title => post.title) %>