Sha256: 4774ffc3dd1ff3affa7886a63dfa1ce12bb3a9fd768e33420909dbcae1c98ed4
Contents?: true
Size: 943 Bytes
Versions: 3
Compression:
Stored size: 943 Bytes
Contents
<% if @gallery %> <% content_for :head do %> <%= stylesheet_link_tag "sofa_gallery/thumbnails.css" %> <%= javascript_include_tag "sofa_gallery/thumbnails.js" %> <% end %> <ul id="<%= dom_id(@gallery)%>" class="gallery"> <h2><%= @gallery.title %></h2> <p><%= @gallery.description %></p> <br /> <% if @gallery.photos.count > 0 %> <% @gallery.photos.each do |photo| %> <li id="<%= dom_id(photo) %>"> <div class="photo" style="width: <%= @gallery.thumb_width %>px; height: <%= @gallery.thumb_height %>px;"> <%= link_to photo.image.url(:full), :rel => "prettyPhoto[pp_gal]", :title => photo.description do %> <%= image_tag(photo.image.url(:thumb), :alt => photo.description) %> <% end %> </div> </li> <% end %> <% else %> <em>No photos in this gallery.</em> <% end %> </ul> <% else %> Gallery not found. <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems