Skip to content

Instantly share code, notes, and snippets.

@mjtko
Created December 23, 2011 09:37
Show Gist options
  • Save mjtko/1513727 to your computer and use it in GitHub Desktop.
Save mjtko/1513727 to your computer and use it in GitHub Desktop.
<ul class="photos">
<% @album.photos.in_groups_of(20, false) do |photos| %>
<div class="slide">
<% photos.each do |photo| %>
<li class="photo">
<%= link_to image_tag(photo.source(:square)), photo.source(:large), rel: 'gallery', class: 'fancybox-thumb' %>
</li>
<% end %>
</div>
<% end %>
</ul>
%ul.photos
- @album.photos.in_groups_of(20, false) do |photos|
.slide
- photos.each do |photo|
%li.photo
= link_to image_tag(photo.source(:square)), photo.source(:large), rel: 'gallery', class: 'fancybox-thumb'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment