So that when I click the picture itself, it will redirect to the show page instead of having a "Show" link. Currently, my code looks like this.
<% @pins.each do |pin| %>
<%= image_tag pin.picture.url if pin.picture? %>
<%= link_to "Show", pin %>
<% end %>
