<% if post.has_thumb? && !defined?(skip_thumb) %>
<%= raw post.the_link_thumb({}, {class: "img-responsive img-rounded col-md-12 col-lg-12"}) %>
<% end %> <% categories = post.the_categories.decorate %> <% if categories.present? && !defined?(skip_categories) %>
<%= ct("categories", default: 'Categories') %>
<% end %> <% if !defined?(skip_last_articles) %>
<%= ct("latest_articles", default: 'Latest Articles') %>
<% end %> <% if !defined?(skip_similar_art) %>
<%= ct("related_articles", default: 'Related Articles') %>
<% end %> <% if !defined?(skip_tasg) %> <% tags = post.the_tags.decorate %> <% if tags.present? %>
<%= ct("post_tag_list", default: 'Tags') %>
<% tags.each do |post_tag| %> <%= post_tag.the_title %> <% end %>
<% end %> <% end %> <% if post.render_fields.present? && !defined?(skip_fields) %>
<%= ct("extra_attributes", default: 'Extra Attributes') %>
<%= raw post.render_fields %>
<% end %>