<% pages.each do |page| %> <% content = page.content %> <% next unless (current_user || User.new).can_read?(content) %>
<%= link_to content do %> <%= image_tag content.first_public_image %> <% end %>
<%= link_to content.name, content %> <% if user_signed_in? && current_user == @page_collection.user %> more_vert <% end %>
<% if page.explanation? %>
<%= simple_format page.explanation %>
<% end %>
  • Submitted by <%= link_to content.user, class: "#{User.text_color}" do %> <%= image_tag content.user.image_url(size=20), class: 'left circle', style: 'margin-right: 8px;' %> <%= content.user.display_name %> <% end %>
<% end %>