Sha256: d4476c3565c0904e608e0caacf7a987f95ffeb3b8cccd4ea28536f905f3c6cfb

Contents?: true

Size: 569 Bytes

Versions: 5

Compression:

Stored size: 569 Bytes

Contents

<% if @gallery %>
  <% content_for :head do %>
    <%= stylesheet_link_tag "/assets/sofa_gallery/sofa_gallery_carousel.css" %>
    <%= javascript_include_tag "/assets/sofa_gallery/sofa_gallery_carousel.js" %>
  <% end %>
  <ul id="cms_carousel" class="jcarousel-skin-tango">
    <% @gallery.photos.each do |photo| %>
      <li id="<%= dom_id(photo) %>">
        <div class="photo">
          <%= link_to image_tag(photo.image.url(:full), :alt => photo.description), photo.url %>
        </div>
      </li>
    <% end %>
  </ul>
<% else %>
  Gallery not found.
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sofa_gallery-0.0.5 app/views/sofa_gallery/_carousel.html.erb
sofa_gallery-0.0.4 app/views/sofa_gallery/_carousel.html.erb
sofa_gallery-0.0.3 app/views/sofa_gallery/_carousel.html.erb
sofa_gallery-0.0.2 app/views/sofa_gallery/_carousel.html.erb
sofa_gallery-0.0.1 app/views/sofa_gallery/_carousel.html.erb