<%= link_to [share.user, share] do %>
<%= image_tag content.first_public_image %>
<% end %>
<%= link_to content do %>
<%= content.class.icon %>
<%= content.title %>
<% end %>
<%= simple_format content.description %><% end %> <% if content.page_types.any? %>
<% if content.allow_submissions? %> Now accepting submissions for <% else %> This Collection is for <% end %> <%= content.page_types.to_sentence %> pages.
<% end %> <%= render partial: 'share_comments/form', locals: { share: share } %><%= pluralize share.share_comments.count, 'comment' %>
<% share.share_comments.each do |comment| %>
<%= render partial: 'share_comments/show', locals: { comment: comment, share: share } %>
<% end %>
<% if share.share_comments.count > 10 %>
<%= render partial: 'share_comments/form', locals: { share: share } %>
<% end %>