<%= link_to post.title, post %>
<% if post.is_group %>
<%= I18n.t("activerecord.attributes.#{post.class.name.downcase}.is_group") %>
<% end %>
<%= sanitize strip_tags(post.rendered_description.to_html) %>
<% if post.category %> <%= link_to [post.class, cat: post.category] do %> <%= category_icon(post.category) %> <%= post.category %> <% end %> <% end %> <% (post.tags || []).each do |tag| %> <%= glyph :tag %> <%= link_to [post.class, tag: tag] do %> <%= tag %> <% end %> <% end %>
<% if post.type == "Inquiry" %>
<%= l post.updated_at.to_date, format: :long %>
<% end %>