% if @gallery %>
<% content_for :head do %>
<%= stylesheet_link_tag "comfy_gallery/thumbnails.css" %>
<%= javascript_include_tag "comfy_gallery/thumbnails.js" %>
<% end %>
<%= @gallery.title %>
<%= @gallery.description %>
<% if @gallery.photos.count > 0 %>
<% @gallery.photos.order(:position).each do |photo| %>
-
<%= link_to photo.image.url(:full), :rel => "prettyPhoto[pp_gal]", :title => photo.description do %>
<%= image_tag(photo.image.url(:thumb), :alt => photo.title) %>
<% end %>
<% end %>
<% else %>
No photos in this gallery.
<% end %>
<% else %>
Gallery not found.
<% end %>