<%= link_to(image_url(@screenshots.first)) do %> <%= image_tag(@screenshots.first) %> <% end %>
<% @screenshots.drop(1).each do |screenshot| %>
<%= link_to(image_url(screenshot)) do %> <%= image_tag(screenshot) %> <% end %>
<% end %>
Previous Next