Article Details
<%= link_to "Back to List", admin_articles_path, :class => "btn btn-default create-new hvr-box-shadow-outset" %>
<%= link_to "Edit", edit_admin_article_path(@article), :class => "btn btn-warning btn-sm hvr-box-shadow-outset", :style=> "min-width: 65px;border: none;background-color: #fdb913 !important;" %>
<% if @article.status == "Active" %>
<%= link_to "Unpublish", admin_unpublish_post_path(@article), method: :delete, data: { confirm: "Are you sure you want to Unpublish ?"}, :class => "btn btn-danger clients-btns btn-sm hvr-box-shadow-outset", :style => "width: 90px;margin-right: 8px;background-color:#D73925 !important;border:none !important;" %>
<% else %>
<%= link_to "Publish", admin_publish_post_path(@article), method: :delete, data: { confirm: "Are you sure you want to Publish ?"}, :class => "btn btn-danger clients-btns btn-sm hvr-box-shadow-outset", :style => "width: 90px;margin-right: 8px;background-color:#D73925 !important;border:none !important;" %>
<% end %>
Article Title
<%= @article.title %>
Article Summary
<%= @article.summary %>
Article Content
<% if !@article.content.nil? && @article.content != "" %>
<%=raw @article.content.force_encoding(Encoding::UTF_8) %>
<% end %>
Published On
<%= @article.created_at.strftime("%a, %d %b %Y ") %>
Buyer's Journey Stages
<%= @article.buyers_journey_stages %>
Author
<%= @article.author.name %>
Thumbnail
<%= image_tag @article.thumbnail.url %>
OG Image
<%= image_tag @article.og_image.url, :style=>"width:100%;" %>
Article URL
<%= request.protocol %><%= request.host_with_port %>/blog/<%= @article.post_url %>