% content_for :class, 'post view' %> <%= content_tag :h2, @post.title %> <%= link_to 'Preview', admin_post_path(@post), class: %w(selected button) %> <%= link_to 'Tags', admin_post_tags_path(@post), class: %w(button) %> <%= link_to 'Title', admin_post_titles_path(@post), class: %w(button) %> <%= content_tag :div, class: %w(publish state), href: admin_post_toggle_path(@post), method: :put, published: @post.published?, as: 'Post.Publish' do %> Published Draft <% end %> <%= link_to 'Edit this post', edit_admin_post_path(@post) %> <%= content_tag :article, @post.compiled_content.try(:html_safe) %>